123456789101112131415161718192021222324 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net8.0-windows10.0.19041.0</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <RuntimeIdentifiers>win-x64</RuntimeIdentifiers>
- <Nullable>enable</Nullable>
- <RootNamespace>InABox.Avalonia.Platform.Desktop</RootNamespace>
- <EnableMsixTooling>true</EnableMsixTooling>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\3rdpartylibs\BluetoothLENet-master\BluetoothLeNet\BluetoothLeNet.csproj" />
- <ProjectReference Include="..\InABox.Avalonia.Platform\InABox.Avalonia.Platform.csproj" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="bblanchon.PDFium.Win32" Version="135.0.7019" />
- <PackageReference Include="Microsoft.Maui.Essentials" Version="8.0.93" />
- <PackageReference Include="PDFtoImage" Version="5.0.0" />
- <PackageReference Include="SkiaSharp" Version="3.116.1" />
- </ItemGroup>
-
- </Project>
|