12345678910111213141516171819202122232425 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Library</OutputType>
- <TargetFramework>net8.0-windows10.0.19041.0</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- <Platforms>x86;x64;arm64</Platforms>
- <RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers>
- <UseWinUI>true</UseWinUI>
- <WindowsPackaging>None</WindowsPackaging>
- <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="Microsoft.WindowsAppSDK" Version="1.6.250205002" />
- <PackageReference Include="PDFtoImage" Version="5.0.0" />
- </ItemGroup>
- </Project>
|