Prs.DigitalKey.Desktop.csproj 1.2 KB

123456789101112131415161718192021222324252627282930313233
  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.3" />
  25. <PackageReference Include="Avalonia.Diagnostics" Version="11.2.3" />
  26. <PackageReference Include="Microsoft.Maui.Essentials" Version="8.0.93" />
  27. </ItemGroup>
  28. </Project>