mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
UI - Added remote management for bringing to foreground, restarting and shutting down UI - Simplified services namespaces
82 lines
3.8 KiB
XML
82 lines
3.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
<PreserveCompilationContext>false</PreserveCompilationContext>
|
|
<ShouldIncludeNativeSkiaSharp>false</ShouldIncludeNativeSkiaSharp>
|
|
<AssemblyTitle>Artemis.Core</AssemblyTitle>
|
|
<Product>Artemis Core</Product>
|
|
<Copyright>Copyright © Robert Beekman - 2020</Copyright>
|
|
<OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath>
|
|
<Platforms>x64</Platforms>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
<DocumentationFile>bin\x64\Debug\Artemis.Core.xml</DocumentationFile>
|
|
<NoWarn></NoWarn>
|
|
<WarningLevel>5</WarningLevel>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<NrtRevisionFormat>1.0-{chash:6}</NrtRevisionFormat>
|
|
<NrtResolveSimpleAttributes>true</NrtResolveSimpleAttributes>
|
|
<NrtResolveInformationalAttribute>true</NrtResolveInformationalAttribute>
|
|
<NrtResolveCopyright>true</NrtResolveCopyright>
|
|
<NrtTagMatch>v[0-9]*</NrtTagMatch>
|
|
<NrtRemoveTagV>true</NrtRemoveTagV>
|
|
<NrtRequiredVcs>git</NrtRequiredVcs>
|
|
<NrtShowRevision>true</NrtShowRevision>
|
|
<Nullable>enable</Nullable>
|
|
<AnalysisLevel>latest</AnalysisLevel>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
<DocumentationFile>bin\x64\Release\Artemis.Core.xml</DocumentationFile>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Artemis.Storage\Artemis.Storage.csproj">
|
|
<Private>false</Private>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Ben.Demystifier" Version="0.1.6" />
|
|
<PackageReference Include="EmbedIO" Version="3.4.3" />
|
|
<PackageReference Include="HidSharp" Version="2.1.0" />
|
|
<PackageReference Include="Humanizer.Core" Version="2.8.26" />
|
|
<PackageReference Include="LiteDB" Version="5.0.9" />
|
|
<PackageReference Include="McMaster.NETCore.Plugins" Version="1.3.1" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
|
|
<PackageReference Include="Ninject" Version="3.3.4" />
|
|
<PackageReference Include="Ninject.Extensions.ChildKernel" Version="3.3.0" />
|
|
<PackageReference Include="Ninject.Extensions.Conventions" Version="3.3.0" />
|
|
<PackageReference Include="Serilog" Version="2.10.0" />
|
|
<PackageReference Include="Serilog.Enrichers.Demystify" Version="1.0.0-dev-00019" />
|
|
<PackageReference Include="Serilog.Sinks.Debug" Version="1.0.1" />
|
|
<PackageReference Include="Serilog.Sinks.File" Version="4.1.0" />
|
|
<PackageReference Include="SkiaSharp" Version="2.80.2" />
|
|
<PackageReference Include="System.Buffers" Version="4.5.1" />
|
|
<PackageReference Include="System.IO.FileSystem.AccessControl" Version="5.0.0" />
|
|
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
|
|
<PackageReference Include="System.Reflection.Metadata" Version="5.0.0" />
|
|
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
|
|
<PackageReference Include="Unclassified.NetRevisionTask" Version="0.3.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Reference Include="RGB.NET.Brushes">
|
|
<HintPath>..\..\..\RGB.NET\bin\net5.0\RGB.NET.Brushes.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="RGB.NET.Core">
|
|
<HintPath>..\..\..\RGB.NET\bin\net5.0\RGB.NET.Core.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="RGB.NET.Groups">
|
|
<HintPath>..\..\..\RGB.NET\bin\net5.0\RGB.NET.Groups.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Update="Resources\intro-profile.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
</Project> |