Skip to content

Commit

Permalink
Merge pull request #7 from idormenco/feature/rework-to-support-more-d…
Browse files Browse the repository at this point in the history
…ot-net

Rework csproj
  • Loading branch information
idormenco authored Jul 1, 2021
2 parents fdcd09c + 291a384 commit b5ae06f
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 124 deletions.
19 changes: 11 additions & 8 deletions Polybool.Net.sln
Original file line number Diff line number Diff line change
@@ -1,28 +1,31 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
# Visual Studio Version 16
VisualStudioVersion = 16.0.31129.286
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Polybool.Net", "Polybool.Net\Polybool.Net.csproj", "{5FB7C719-BA44-48DA-8384-1796A5CF3FF6}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PolyBool.Net.Examples", "PolyBool.Net.Examples\PolyBool.Net.Examples.csproj", "{673E2268-9BB0-4E9C-9948-395B80CFB5C9}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Polybool.Net", "Polybool.Net\Polybool.Net.csproj", "{A2D1356B-0EC0-4DC7-BDBD-C5DF6F05C872}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{5FB7C719-BA44-48DA-8384-1796A5CF3FF6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5FB7C719-BA44-48DA-8384-1796A5CF3FF6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5FB7C719-BA44-48DA-8384-1796A5CF3FF6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5FB7C719-BA44-48DA-8384-1796A5CF3FF6}.Release|Any CPU.Build.0 = Release|Any CPU
{673E2268-9BB0-4E9C-9948-395B80CFB5C9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{673E2268-9BB0-4E9C-9948-395B80CFB5C9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{673E2268-9BB0-4E9C-9948-395B80CFB5C9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{673E2268-9BB0-4E9C-9948-395B80CFB5C9}.Release|Any CPU.Build.0 = Release|Any CPU
{A2D1356B-0EC0-4DC7-BDBD-C5DF6F05C872}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A2D1356B-0EC0-4DC7-BDBD-C5DF6F05C872}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A2D1356B-0EC0-4DC7-BDBD-C5DF6F05C872}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A2D1356B-0EC0-4DC7-BDBD-C5DF6F05C872}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {399472D8-DB6C-4E09-912C-EA6D0D119B5D}
EndGlobalSection
EndGlobal
6 changes: 0 additions & 6 deletions Polybool.Net/App.config

This file was deleted.

93 changes: 18 additions & 75 deletions Polybool.Net/Polybool.Net.csproj
Original file line number Diff line number Diff line change
@@ -1,75 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{5FB7C719-BA44-48DA-8384-1796A5CF3FF6}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Polybool.Net</RootNamespace>
<AssemblyName>Polybool.Net</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<StartupObject />
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="Microsoft.CSharp" />
</ItemGroup>
<ItemGroup>
<Compile Include="Logic\Intersecter.cs" />
<Compile Include="Logic\PointUtils.cs" />
<Compile Include="Logic\SegmentSelector.cs" />
<Compile Include="Logic\Utils.cs" />
<Compile Include="Objects\CombinedPolySegments.cs" />
<Compile Include="Objects\IntersectionPoint.cs" />
<Compile Include="Objects\Epsilon.cs" />
<Compile Include="Objects\Fill.cs" />
<Compile Include="Objects\LinkedList.cs" />
<Compile Include="Objects\Matcher.cs" />
<Compile Include="Objects\Node.cs" />
<Compile Include="Objects\Point.cs" />
<Compile Include="Objects\Polygon.cs" />
<Compile Include="Logic\PolyBool.cs" />
<Compile Include="Objects\Transition.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Objects\Region.cs" />
<Compile Include="Objects\PolySegments.cs" />
<Compile Include="Objects\Segment.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Authors>Ion Dormenco</Authors>
<Description>Boolean operations on polygons (union, intersection, difference, xor) in .NET</Description>
<Copyright>Copyright Ion Dormenco</Copyright>
<TargetFrameworks>netstandard1.4;net40;net45;net461;netstandard2.0;netstandard2.1</TargetFrameworks>
<PackageTags>polygons;boolean;union;intersection;difference;xor;polybooljs;</PackageTags>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Deterministic>true</Deterministic>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>
</Project>
35 changes: 0 additions & 35 deletions Polybool.Net/Properties/AssemblyInfo.cs

This file was deleted.

0 comments on commit b5ae06f

Please sign in to comment.