-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRT.Coordinates.csproj
77 lines (77 loc) · 3.36 KB
/
RT.Coordinates.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" 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>{80E00597-BD8D-4C94-B112-56A09D1C0D62}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>RT.Coordinates</RootNamespace>
<AssemblyName>RT.Coordinates</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
<LangVersion>8.0</LangVersion>
<OutputPath>builds\$(Configuration)\</OutputPath>
<IntermediateOutputPath>builds\$(Configuration)\obj-$(AssemblyName)\</IntermediateOutputPath>
<BaseIntermediateOutputPath>builds\$(Configuration)\obj-$(AssemblyName)\</BaseIntermediateOutputPath>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DocumentationFile>builds\Debug\RT.Coordinates.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<DefineConstants>TRACE</DefineConstants>
<DocumentationFile>builds\Release\RT.Coordinates.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.cs" />
<Compile Include="Cairo.cs" />
<Compile Include="CellWithDistance.cs" />
<Compile Include="CircleFraction.cs" />
<Compile Include="CircularCell.cs" />
<Compile Include="CombinedCell.cs" />
<Compile Include="PentaCell.cs" />
<Compile Include="Pentavector.cs" />
<Compile Include="Square.cs" />
<Compile Include="CoordinatesHelpers.cs" />
<Compile Include="EdgeInfo.cs" />
<Compile Include="EdgeType.cs" />
<Compile Include="Floret.cs" />
<Compile Include="GenericVertex.cs" />
<Compile Include="GridUtils.cs" />
<Compile Include="Hex.cs" />
<Compile Include="IHasDirection.cs" />
<Compile Include="IHasSvgGeometry.cs" />
<Compile Include="INeighbor.cs" />
<Compile Include="Kite.cs" />
<Compile Include="Link.cs" />
<Compile Include="MazeBias.cs" />
<Compile Include="Chamf.cs" />
<Compile Include="OctoCell.cs" />
<Compile Include="Penrose.cs" />
<Compile Include="PointD.cs" />
<Compile Include="Rhomb.cs" />
<Compile Include="Rhombihexadel.cs" />
<Compile Include="Structure.cs" />
<Compile Include="SvgColor.cs" />
<Compile Include="SvgInstructions.cs" />
<Compile Include="SvgSegment.cs" />
<Compile Include="Tri.cs" />
<Compile Include="Vertex.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
</ItemGroup>
<ItemGroup>
<None Include="RT.Coordinates.nuspec" />
<None Include="README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>