AvaloniaApplication1.csproj 950 B

12345678910111213141516171819
  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.1.0" />
  12. <PackageReference Include="Avalonia.Desktop" Version="11.1.0" />
  13. <PackageReference Include="Avalonia.Themes.Fluent" Version="11.1.0" />
  14. <PackageReference Include="Avalonia.Fonts.Inter" Version="11.1.0" />
  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.1.0" />
  17. </ItemGroup>
  18. </Project>