clipper2-sys 1.0.0

Polygon Clipping and Offsetting (Clipper2 wrapper)
Documentation
<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <OutputType>Exe</OutputType>
    <TargetFramework>net8.0</TargetFramework>
    <ImplicitUsings>enable</ImplicitUsings>
    <Nullable>enable</Nullable>
  </PropertyGroup>

  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
    <DefineConstants>$(DefineConstants);USINGZ</DefineConstants>
  </PropertyGroup>

  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
    <DefineConstants>$(DefineConstants);USINGZ</DefineConstants>
  </PropertyGroup>

  <ItemGroup>
    <Compile Include="..\..\Utils\SVG\Clipper.SVG.cs" Link="Clipper.SVG.cs" />
    <Compile Include="..\..\Utils\SVG\Clipper.SVG.Utils.cs" Link="Clipper.SVG.Utils.cs" />
  </ItemGroup>

  <ItemGroup>
    <ProjectReference Include="..\..\USINGZ\Clipper2Lib_Z.csproj" />
  </ItemGroup>
  
</Project>