t8_win_app.csproj 1.1 KB

123456789101112131415161718192021222324
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <Nullable>enable</Nullable>
  6. <BuiltInComInteropSupport>true</BuiltInComInteropSupport>
  7. <ApplicationManifest>app.manifest</ApplicationManifest>
  8. <AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <PackageReference Include="Avalonia" Version="11.0.10" />
  12. <PackageReference Include="Avalonia.Desktop" Version="11.0.10" />
  13. <PackageReference Include="Avalonia.Themes.Fluent" Version="11.0.10" />
  14. <PackageReference Include="Avalonia.Fonts.Inter" Version="11.0.10" />
  15. <!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
  16. <PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.0.10" />
  17. <PackageReference Include="MessageBox.Avalonia" Version="3.1.5.1" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <AvaloniaResource Include="img\**"/>
  21. </ItemGroup>
  22. </Project>