|
1 | | -<Project Sdk="Microsoft.NET.Sdk"> |
2 | | - |
3 | | - <PropertyGroup> |
4 | | - <TargetFramework>netstandard2.1</TargetFramework> |
5 | | - <Nullable>enable</Nullable> |
6 | | - <LangVersion>8</LangVersion> |
7 | | - <GeneratePackageOnBuild>True</GeneratePackageOnBuild> |
8 | | - <Authors>Angus Johnson</Authors> |
9 | | - <Description>Polygon Clipping and Offsetting Library</Description> |
10 | | - <Title>Clipper2</Title> |
11 | | - <PackageId>Clipper2</PackageId> |
12 | | - <PackageProjectUrl>http://www.angusj.com/clipper2/Docs/Overview.htm</PackageProjectUrl> |
13 | | - <Copyright>Copyright © 2010-2022</Copyright> |
14 | | - <RepositoryType>git</RepositoryType> |
15 | | - <RepositoryUrl>https://github.com/AngusJohnson/Clipper2</RepositoryUrl> |
16 | | - <PackageReleaseNotes>Major revision to merging polygons in clipping solutions</PackageReleaseNotes> |
17 | | - <Platforms>AnyCPU;x86</Platforms> |
18 | | - </PropertyGroup> |
19 | | - |
20 | | - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
21 | | - <DefineConstants>TRACE</DefineConstants> |
22 | | - </PropertyGroup> |
23 | | - |
24 | | - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'"> |
25 | | - <DefineConstants>TRACE</DefineConstants> |
26 | | - </PropertyGroup> |
27 | | - |
28 | | -</Project> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFramework>netstandard2.1</TargetFramework> |
| 5 | + <Nullable>enable</Nullable> |
| 6 | + <LangVersion>8</LangVersion> |
| 7 | + <GeneratePackageOnBuild>True</GeneratePackageOnBuild> |
| 8 | + <Authors>Angus Johnson</Authors> |
| 9 | + <Description>Polygon Clipping and Offsetting Library</Description> |
| 10 | + <Title>Clipper2</Title> |
| 11 | + <PackageId>Clipper2</PackageId> |
| 12 | + <PackageProjectUrl>http://www.angusj.com/clipper2/Docs/Overview.htm</PackageProjectUrl> |
| 13 | + <Copyright>Copyright © 2010-2023</Copyright> |
| 14 | + <RepositoryType>git</RepositoryType> |
| 15 | + <RepositoryUrl>https://github.com/AngusJohnson/Clipper2</RepositoryUrl> |
| 16 | + <PackageReleaseNotes>Major revision to merging polygons in clipping solutions</PackageReleaseNotes> |
| 17 | + <Platforms>AnyCPU;x86</Platforms> |
| 18 | + <SignAssembly>true</SignAssembly> |
| 19 | + <AssemblyOriginatorKeyFile>Clipper2.snk</AssemblyOriginatorKeyFile> |
| 20 | + <DelaySign>false</DelaySign> |
| 21 | + </PropertyGroup> |
| 22 | + |
| 23 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
| 24 | + <DefineConstants>TRACE</DefineConstants> |
| 25 | + </PropertyGroup> |
| 26 | + |
| 27 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'"> |
| 28 | + <DefineConstants>TRACE</DefineConstants> |
| 29 | + </PropertyGroup> |
| 30 | + |
| 31 | +</Project> |
0 commit comments