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>net7.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="11.0.0-rc1.1" />
|
|
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
|
|
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.0.0-rc1.1" />
|
|
<PackageReference Include="Avalonia.ReactiveUI" Version="11.0.0-rc1.1" />
|
|
<PackageReference Include="Avalonia.Xaml.Behaviors" Version="11.0.0-rc1.1" />
|
|
<PackageReference Include="DynamicData" Version="7.13.1" />
|
|
<PackageReference Include="FluentAvaloniaUI" Version="2.0.0-rc1" />
|
|
<PackageReference Include="Material.Icons.Avalonia" Version="2.0.1" />
|
|
<PackageReference Include="ReactiveUI" Version="18.4.26" />
|
|
<PackageReference Include="ReactiveUI.Validation" Version="3.1.7" />
|
|
<PackageReference Include="RGB.NET.Core" Version="2.0.0-prerelease.83" />
|
|
<PackageReference Include="SkiaSharp" Version="2.88.3" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Artemis.Core\Artemis.Core.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|