VeloeAvaloniaKemonoPartyApp.Desktop.csproj 1.1 KB

1234567891011121314151617181920212223242526
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <!--If you are willing to use Windows/MacOS native APIs you will need to create 3 projects.
  5. One for Windows with net7.0-windows TFM, one for MacOS with net7.0-macos and one with net7.0 TFM for Linux.-->
  6. <TargetFramework>net8.0</TargetFramework>
  7. <Nullable>enable</Nullable>
  8. <BuiltInComInteropSupport>true</BuiltInComInteropSupport>
  9. </PropertyGroup>
  10. <PropertyGroup>
  11. <ApplicationManifest>app.manifest</ApplicationManifest>
  12. <AssemblyVersion>1.0.0.87</AssemblyVersion>
  13. <FileVersion>1.0.0.87</FileVersion>
  14. </PropertyGroup>
  15. <ItemGroup>
  16. <PackageReference Include="Avalonia.Desktop" Version="11.0.6" />
  17. <!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
  18. <PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.0.6" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <ProjectReference Include="..\VeloeAvaloniaKemonoPartyApp\VeloeAvaloniaKemonoPartyApp.csproj" />
  22. </ItemGroup>
  23. </Project>