mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
59 lines
2.9 KiB
XML
59 lines
2.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<PreserveCompilationContext>false</PreserveCompilationContext>
|
|
<ShouldIncludeNativeSkiaSharp>false</ShouldIncludeNativeSkiaSharp>
|
|
<AssemblyTitle>Artemis.Core</AssemblyTitle>
|
|
<Product>Artemis Core</Product>
|
|
<Copyright>Copyright © Robert Beekman - 2020</Copyright>
|
|
<OutputPath>bin\</OutputPath>
|
|
<Platforms>x64</Platforms>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<PackageId>ArtemisRGB.Core</PackageId>
|
|
<PluginApiVersion>1</PluginApiVersion>
|
|
<Nullable>enable</Nullable>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<!--Used to embed the above PluginApiVersion property into the assembly as metadata-->
|
|
<AssemblyMetadata Include="PluginApiVersion" Value="$(PluginApiVersion)" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Artemis.Storage\Artemis.Storage.csproj" />
|
|
<ProjectReference Condition="'$(BuildingNuget)' == 'True'" Update="..\Artemis.Storage\Artemis.Storage.csproj" PrivateAssets="All" />
|
|
|
|
<!--
|
|
Include Artemis.Storage directly in the NuGet package instead of expecting it as an external dependency
|
|
https://github.com/NuGet/Home/issues/3891#issuecomment-309792369
|
|
https://github.com/NuGet/Home/pull/11708
|
|
-->
|
|
<_PackageFiles Include="$(OutputPath)\Artemis.Storage.dll">
|
|
<BuildAction>None</BuildAction>
|
|
<PackagePath>lib\$(TargetFramework)</PackagePath>
|
|
</_PackageFiles>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="DryIoc.dll" Version="5.4.3" />
|
|
<PackageReference Include="EmbedIO" Version="3.5.2" />
|
|
<PackageReference Include="HidSharp" Version="2.1.0" />
|
|
<PackageReference Include="Humanizer.Core" Version="2.14.1" />
|
|
<PackageReference Include="JetBrains.Annotations" Version="2023.3.0" />
|
|
<PackageReference Include="McMaster.NETCore.Plugins" Version="1.4.0" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
<PackageReference Include="RGB.NET.Core" Version="2.0.4-prerelease.1" />
|
|
<PackageReference Include="RGB.NET.Layout" Version="2.0.4-prerelease.1" />
|
|
<PackageReference Include="RGB.NET.Presets" Version="2.0.4-prerelease.1" />
|
|
<PackageReference Include="Serilog.Sinks.Console" Version="5.0.1" />
|
|
<PackageReference Include="Serilog.Sinks.Debug" Version="2.0.0" />
|
|
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
|
|
<PackageReference Include="SkiaSharp" Version="2.88.7" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="Resources/intro-profile.json" CopyToOutputDirectory="PreserveNewest" />
|
|
<None Include="DefaultLayouts/**" CopyToOutputDirectory="PreserveNewest" />
|
|
</ItemGroup>
|
|
</Project> |