22 lines
658 B
XML
22 lines
658 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Library</OutputType>
|
|
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>disable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="ProDotNetZip" Version="1.19.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\CPF\CPF.Linux\CPF.Linux.csproj" />
|
|
<ProjectReference Include="..\..\CPF\CPF.Skia\CPF.Skia.csproj" />
|
|
<ProjectReference Include="..\..\CPF\CPF.Windows\CPF.Windows.csproj" />
|
|
<ProjectReference Include="..\..\CPF\CPF\CPF.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|