123456789101112131415161718192021222324252627282930313233 |
- <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>bin\x64\Debug\</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" />
- <PackageReference Include="Microsoft.Maui.Essentials" Version="8.0.93" />
- </ItemGroup>
-
- </Project>
|