You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.3 KiB
29 lines
1.3 KiB
1 year ago
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
<PropertyGroup>
|
||
|
<OutputType>WinExe</OutputType>
|
||
|
<TargetFramework>net7.0</TargetFramework>
|
||
|
<Nullable>enable</Nullable>
|
||
|
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
|
||
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
||
|
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<Folder Include="Controls\" />
|
||
|
<Folder Include="Models\"/>
|
||
|
<AvaloniaResource Include="Assets\**"/>
|
||
|
</ItemGroup>
|
||
|
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="Avalonia" Version="11.0.0"/>
|
||
|
<PackageReference Include="Avalonia.Desktop" Version="11.0.0"/>
|
||
|
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.0.0"/>
|
||
|
<!--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"/>
|
||
|
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.1" />
|
||
|
<PackageReference Include="FluentAvaloniaUI" Version="2.0.0-rc1" />
|
||
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
|
||
|
</ItemGroup>
|
||
|
</Project>
|