Skip to content

Commit b9d85e4

Browse files
committed
01:init
move Poly2Tri down to Net2.0
1 parent 691a4b6 commit b9d85e4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+2363
-1986
lines changed

.gitignore

Lines changed: 108 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,110 @@
1-
Thumbs.db
1+
# Build Folders (you can keep bin if you'd like, to store dlls and pdbs)
2+
[Bb]in/
3+
[Oo]bj/
4+
5+
# mstest test results
6+
TestResults
7+
8+
## Ignore Visual Studio temporary files, build results, and
9+
## files generated by popular Visual Studio add-ons.
10+
11+
# User-specific files
212
*.suo
313
*.user
4-
obj/
5-
bin/
14+
*.sln.docstates
15+
16+
# Build results
17+
[Dd]ebug/
18+
[Rr]elease/
19+
.hg/
20+
.hgignore
21+
x64/
22+
*_i.c
23+
*_p.c
24+
*.ilk
25+
*.meta
26+
*.obj
27+
*.pch
28+
*.pdb
29+
*.pgc
30+
*.pgd
31+
*.rsp
32+
*.sbr
33+
*.tlb
34+
*.tli
35+
*.tlh
36+
*.tmp
37+
*.log
38+
*.vspscc
39+
*.vssscc
40+
.builds
41+
42+
# Visual C++ cache files
43+
ipch/
44+
*.aps
45+
*.ncb
46+
*.opensdf
47+
*.sdf
48+
49+
# Visual Studio profiler
50+
*.psess
51+
*.vsp
52+
*.vspx
53+
54+
# Guidance Automation Toolkit
55+
*.gpState
56+
57+
# ReSharper is a .NET coding add-in
58+
_ReSharper*
59+
60+
# NCrunch
61+
*.ncrunch*
62+
.*crunch*.local.xml
63+
64+
# Installshield output folder
65+
[Ee]xpress
66+
67+
# DocProject is a documentation generator add-in
68+
DocProject/buildhelp/
69+
DocProject/Help/*.HxT
70+
DocProject/Help/*.HxC
71+
DocProject/Help/*.hhc
72+
DocProject/Help/*.hhk
73+
DocProject/Help/*.hhp
74+
DocProject/Help/Html2
75+
DocProject/Help/html
76+
77+
# Click-Once directory
78+
publish
79+
80+
# Publish Web Output
81+
*.Publish.xml
82+
83+
# NuGet Packages Directory
84+
packages
85+
86+
# Windows Azure Build Output
87+
csx
88+
*.build.csdef
89+
90+
# Windows Store app package directory
91+
AppPackages/
92+
93+
# Others
94+
[Bb]in
95+
[Oo]bj
96+
sql
97+
TestResults
98+
[Tt]est[Rr]esult*
99+
*.Cache
100+
ClientBin
101+
[Ss]tyle[Cc]op.*
102+
~$*
103+
*.dbmdl
104+
Generated_Code #added for RIA/Silverlight projects
105+
106+
# Backup & report files from converting an old project file to a newer
107+
# Visual Studio version. Backup files are not needed, because we have git ;-)
108+
_UpgradeReport_Files/
109+
Backup*/
110+
UpgradeLog*.XML

AUTHORS.txt

100644100755
File mode changed.

Debug/Debug.csproj

100644100755
Lines changed: 81 additions & 76 deletions
Original file line numberDiff line numberDiff line change
@@ -1,83 +1,88 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<PropertyGroup>
4-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6-
<ProductVersion>9.0.30729</ProductVersion>
7-
<SchemaVersion>2.0</SchemaVersion>
8-
<ProjectGuid>{D4FE7CE8-E032-4D57-993A-048651FA8872}</ProjectGuid>
9-
<OutputType>WinExe</OutputType>
10-
<AppDesignerFolder>Properties</AppDesignerFolder>
11-
<RootNamespace>Poly2Tri</RootNamespace>
12-
<AssemblyName>Debug</AssemblyName>
13-
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14-
<FileAlignment>512</FileAlignment>
15-
</PropertyGroup>
16-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17-
<DebugSymbols>true</DebugSymbols>
18-
<DebugType>full</DebugType>
19-
<Optimize>false</Optimize>
20-
<OutputPath>bin\Debug\</OutputPath>
21-
<DefineConstants>DEBUG;TRACE</DefineConstants>
22-
<ErrorReport>prompt</ErrorReport>
23-
<WarningLevel>4</WarningLevel>
24-
</PropertyGroup>
25-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26-
<DebugType>pdbonly</DebugType>
27-
<Optimize>true</Optimize>
28-
<OutputPath>bin\Release\</OutputPath>
29-
<DefineConstants>TRACE</DefineConstants>
30-
<ErrorReport>prompt</ErrorReport>
31-
<WarningLevel>4</WarningLevel>
32-
</PropertyGroup>
33-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
34-
<DebugSymbols>true</DebugSymbols>
35-
<OutputPath>bin\x86\Debug\</OutputPath>
36-
<DefineConstants>DEBUG;TRACE</DefineConstants>
37-
<DebugType>full</DebugType>
38-
<PlatformTarget>x86</PlatformTarget>
39-
<ErrorReport>prompt</ErrorReport>
40-
</PropertyGroup>
41-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
42-
<OutputPath>bin\x86\Release\</OutputPath>
43-
<DefineConstants>TRACE</DefineConstants>
44-
<Optimize>true</Optimize>
45-
<DebugType>pdbonly</DebugType>
46-
<PlatformTarget>x86</PlatformTarget>
47-
<ErrorReport>prompt</ErrorReport>
48-
</PropertyGroup>
49-
<ItemGroup>
50-
<Reference Include="System" />
51-
<Reference Include="System.Core">
52-
<RequiredTargetFramework>3.5</RequiredTargetFramework>
53-
</Reference>
54-
<Reference Include="System.Data" />
55-
<Reference Include="System.Drawing" />
56-
<Reference Include="System.Windows.Forms" />
57-
<Reference Include="System.Xml" />
58-
</ItemGroup>
59-
<ItemGroup>
60-
<Compile Include="DebugForm.cs">
61-
</Compile>
62-
<Compile Include="PolygonInfo.cs" />
63-
<Compile Include="Properties\AssemblyInfo.cs" />
64-
</ItemGroup>
65-
<ItemGroup>
66-
<ProjectReference Include="..\ExampleData\ExampleData.csproj">
67-
<Project>{FC6F045E-7112-44BF-A491-99D987D9C6D2}</Project>
68-
<Name>ExampleData</Name>
69-
</ProjectReference>
70-
<ProjectReference Include="..\Poly2Tri.csproj">
71-
<Project>{C5E5802D-6A45-4FE9-BAE7-5F0AE91D72C1}</Project>
72-
<Name>Poly2Tri</Name>
73-
</ProjectReference>
74-
</ItemGroup>
75-
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6+
<ProductVersion>9.0.30729</ProductVersion>
7+
<SchemaVersion>2.0</SchemaVersion>
8+
<ProjectGuid>{D4FE7CE8-E032-4D57-993A-048651FA8872}</ProjectGuid>
9+
<OutputType>WinExe</OutputType>
10+
<AppDesignerFolder>Properties</AppDesignerFolder>
11+
<RootNamespace>Poly2Tri</RootNamespace>
12+
<AssemblyName>Debug</AssemblyName>
13+
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14+
<FileAlignment>512</FileAlignment>
15+
<FileUpgradeFlags>
16+
</FileUpgradeFlags>
17+
<OldToolsVersion>3.5</OldToolsVersion>
18+
<UpgradeBackupLocation />
19+
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
20+
</PropertyGroup>
21+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
22+
<DebugSymbols>true</DebugSymbols>
23+
<DebugType>full</DebugType>
24+
<Optimize>false</Optimize>
25+
<OutputPath>bin\Debug\</OutputPath>
26+
<DefineConstants>DEBUG;TRACE</DefineConstants>
27+
<ErrorReport>prompt</ErrorReport>
28+
<WarningLevel>4</WarningLevel>
29+
</PropertyGroup>
30+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
31+
<DebugType>pdbonly</DebugType>
32+
<Optimize>true</Optimize>
33+
<OutputPath>bin\Release\</OutputPath>
34+
<DefineConstants>TRACE</DefineConstants>
35+
<ErrorReport>prompt</ErrorReport>
36+
<WarningLevel>4</WarningLevel>
37+
</PropertyGroup>
38+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
39+
<DebugSymbols>true</DebugSymbols>
40+
<OutputPath>bin\x86\Debug\</OutputPath>
41+
<DefineConstants>DEBUG;TRACE</DefineConstants>
42+
<DebugType>full</DebugType>
43+
<PlatformTarget>x86</PlatformTarget>
44+
<ErrorReport>prompt</ErrorReport>
45+
</PropertyGroup>
46+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
47+
<OutputPath>bin\x86\Release\</OutputPath>
48+
<DefineConstants>TRACE</DefineConstants>
49+
<Optimize>true</Optimize>
50+
<DebugType>pdbonly</DebugType>
51+
<PlatformTarget>x86</PlatformTarget>
52+
<ErrorReport>prompt</ErrorReport>
53+
</PropertyGroup>
54+
<ItemGroup>
55+
<Reference Include="System" />
56+
<Reference Include="System.Data" />
57+
<Reference Include="System.Drawing" />
58+
<Reference Include="System.Windows.Forms" />
59+
<Reference Include="System.Xml" />
60+
</ItemGroup>
61+
<ItemGroup>
62+
<Compile Include="DebugForm.cs">
63+
</Compile>
64+
<Compile Include="PolygonInfo.cs" />
65+
<Compile Include="Properties\AssemblyInfo.cs" />
66+
</ItemGroup>
67+
<ItemGroup>
68+
<ProjectReference Include="..\ExampleData\ExampleData.csproj">
69+
<Project>{FC6F045E-7112-44BF-A491-99D987D9C6D2}</Project>
70+
<Name>ExampleData</Name>
71+
</ProjectReference>
72+
<ProjectReference Include="..\Poly2Tri.csproj">
73+
<Project>{C5E5802D-6A45-4FE9-BAE7-5F0AE91D72C1}</Project>
74+
<Name>Poly2Tri</Name>
75+
</ProjectReference>
76+
</ItemGroup>
77+
<ItemGroup>
78+
<None Include="app.config" />
79+
</ItemGroup>
80+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
7681
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
7782
Other similar extension points exist, see Microsoft.Common.targets.
7883
<Target Name="BeforeBuild">
7984
</Target>
8085
<Target Name="AfterBuild">
8186
</Target>
82-
-->
87+
-->
8388
</Project>

0 commit comments

Comments
 (0)