<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>8</LangVersion>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Authors>Angus Johnson</Authors>
<Description>Polygon Clipping and Offsetting Library</Description>
<Title>Clipper2</Title>
<PackageId>Clipper2</PackageId>
<PackageProjectUrl>https://www.angusj.com/clipper2/Docs/Overview.htm</PackageProjectUrl>
<Copyright>Copyright © 2010-2025</Copyright>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/AngusJohnson/Clipper2</RepositoryUrl>
<PackageReleaseNotes>Release ver. 2.0.0
This release adds a new Triangulation module to the library.
It also includes a number of bugfixes (see GitHub issues #980 .. #1045)</PackageReleaseNotes>
<Platforms>AnyCPU;x86</Platforms>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>Clipper2.snk</AssemblyOriginatorKeyFile>
<DelaySign>false</DelaySign>
<Version>2.0.0</Version>
<PackageLicenseFile>License.txt</PackageLicenseFile>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>geometry polygon clipping inflate intersection union difference offsetting boolean-operations</PackageTags>
<NoWin32Manifest>true</NoWin32Manifest>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants>TRACE</DefineConstants>
<IsPublishable>False</IsPublishable>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
<DefineConstants>TRACE</DefineConstants>
<IsPublishable>False</IsPublishable>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<IsPublishable>False</IsPublishable>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
<IsPublishable>False</IsPublishable>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Nuget\**" />
<EmbeddedResource Remove="Nuget\**" />
<None Remove="Nuget\**" />
</ItemGroup>
<ItemGroup>
<None Include="..\NuGet\icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\NuGet\License.txt">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\NuGet\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>