mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-12 21:38:38 +00:00
29 lines
1.4 KiB
XML
29 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
<Platforms>x64</Platforms>
|
|
<OutputPath>bin</OutputPath>
|
|
<AssemblyTitle>Artemis</AssemblyTitle>
|
|
<AppendTargetFrameworkToOutputPath>False</AppendTargetFrameworkToOutputPath>
|
|
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<AvaloniaResource Include="Assets\**" />
|
|
<None Remove=".gitignore" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Avalonia" Version="11.0.0-preview8" />
|
|
<PackageReference Include="Avalonia.Desktop" Version="11.0.0-preview8" />
|
|
<!--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-preview8" />
|
|
<PackageReference Include="Avalonia.ReactiveUI" Version="11.0.0-preview8" />
|
|
<PackageReference Include="ReactiveUI" Version="18.4.26" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Artemis.Core\Artemis.Core.csproj" />
|
|
<ProjectReference Include="..\Artemis.UI\Artemis.UI.csproj" />
|
|
</ItemGroup>
|
|
</Project> |