1234567891011121314151617181920212223242526272829303132 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>net8.0-windows10.0.19041.0</TargetFramework>
- <Nullable>enable</Nullable>
- <BuiltInComInteropSupport>true</BuiltInComInteropSupport>
- <Platforms>x64</Platforms>
- <RuntimeIdentifiers>win-x64</RuntimeIdentifiers>
- <UseWinUI>true</UseWinUI>
- <WindowsPackaging>None</WindowsPackaging>
- <EnableMsixTooling>true</EnableMsixTooling>
- </PropertyGroup>
- <PropertyGroup>
- <ApplicationManifest>app.manifest</ApplicationManifest>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
- <OutputPath>..\..\prs.desktop\bin\Debug\net8.0-windows\PRSDigitalKey</OutputPath>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\..\inabox\InABox.Avalonia.Platform.Desktop\InABox.Avalonia.Platform.Desktop.csproj" />
- <ProjectReference Include="..\PRS.DigitalKey\PRS.DigitalKey.csproj"/>
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="Avalonia.Desktop" Version="11.2.3" />
- <PackageReference Include="Avalonia.Diagnostics" Version="11.2.3" />
- </ItemGroup>
-
- </Project>
|