mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
30 lines
1.5 KiB
XML
30 lines
1.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Library</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<OutputPath>bin\</OutputPath>
|
|
<Platforms>x64</Platforms>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<PackageId>ArtemisRGB.UI.Shared</PackageId>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Avalonia" Version="0.10.18" />
|
|
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
|
|
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="0.10.18" />
|
|
<PackageReference Include="Avalonia.ReactiveUI" Version="0.10.18" />
|
|
<PackageReference Include="Avalonia.Xaml.Behaviors" Version="0.10.18" />
|
|
<PackageReference Include="DynamicData" Version="7.9.14" />
|
|
<PackageReference Include="FluentAvaloniaUI" Version="1.4.1" />
|
|
<PackageReference Include="Material.Icons.Avalonia" Version="1.1.10" />
|
|
<PackageReference Include="ReactiveUI" Version="17.1.50" />
|
|
<PackageReference Include="ReactiveUI.Validation" Version="2.2.1" />
|
|
<PackageReference Include="RGB.NET.Core" Version="1.0.0-prerelease.46" />
|
|
<PackageReference Include="SkiaSharp" Version="2.88.1-preview.108" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Artemis.Core\Artemis.Core.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|