2024-06-24 10:15:59 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>disable</Nullable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-11-25 16:31:27 +08:00
|
|
|
|
<PackageReference Include="ProDotNetZip" Version="1.19.0" />
|
2024-06-24 10:15:59 +08:00
|
|
|
|
</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>
|