Prs.DigitalKey.Desktop.csproj 1.2 KB

1234567891011121314151617181920212223242526272829303132
  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>..\..\prs.desktop\bin\Debug\net8.0-windows\PRSDigitalKey</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. </ItemGroup>
  27. </Project>