PRS.Avalonia.Desktop.csproj 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net8.0-windows10.0.19041.0</TargetFramework>
  5. <Nullable>enable</Nullable>
  6. <BuiltInComInteropSupport>true</BuiltInComInteropSupport>
  7. <Platforms>x64</Platforms>
  8. <RuntimeIdentifiers>win-x64</RuntimeIdentifiers>
  9. <UseWinUI>true</UseWinUI>
  10. <WindowsPackaging>None</WindowsPackaging>
  11. <EnableMsixTooling>true</EnableMsixTooling>
  12. <Configurations>Debug;Release;DebugDev</Configurations>
  13. </PropertyGroup>
  14. <PropertyGroup>
  15. <ApplicationManifest>app.manifest</ApplicationManifest>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  18. <OutputPath>bin\x64\Debug\</OutputPath>
  19. </PropertyGroup>
  20. <ItemGroup>
  21. <PackageReference Include="Avalonia.Desktop"/>
  22. <!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
  23. </ItemGroup>
  24. <ItemGroup>
  25. <ProjectReference Include="..\..\..\inabox\InABox.Avalonia.Platform.Desktop\InABox.Avalonia.Platform.Desktop.csproj" />
  26. <ProjectReference Include="..\PRS.Avalonia\PRS.Avalonia.csproj"/>
  27. </ItemGroup>
  28. <ItemGroup>
  29. <PackageVersion Update="Avalonia.Diagnostics" Version="11.2.3" />
  30. </ItemGroup>
  31. </Project>