Prs.DigitalKey.Desktop.csproj 1.1 KB

12345678910111213141516171819202122232425262728293031
  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. </PropertyGroup>
  13. <PropertyGroup>
  14. <ApplicationManifest>app.manifest</ApplicationManifest>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  17. <OutputPath>bin\x64\Debug\</OutputPath>
  18. </PropertyGroup>
  19. <ItemGroup>
  20. <ProjectReference Include="..\..\..\inabox\InABox.Avalonia.Platform.Desktop\InABox.Avalonia.Platform.Desktop.csproj" />
  21. <ProjectReference Include="..\PRS.DigitalKey\PRS.DigitalKey.csproj"/>
  22. </ItemGroup>
  23. <ItemGroup>
  24. <PackageReference Include="Avalonia.Desktop" Version="11.2.2" />
  25. </ItemGroup>
  26. </Project>