Skip to content

Commit 08e3c0b

Browse files
committedApr 23, 2014
applied patch for NTS.PCL.nuspec
Issue: 110 git-svn-id: http://nettopologysuite.googlecode.com/svn/trunk@1223 53ca42c3-9f19-0410-8ccb-b990a9bb5db6
1 parent 0bffe43 commit 08e3c0b

File tree

3 files changed

+33
-4
lines changed

3 files changed

+33
-4
lines changed
 

‎NTS.PCL.nuspec

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?xml version="1.0"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3+
<metadata>
4+
<id>NetTopologySuite.PCL</id>
5+
<version>$version$</version>
6+
<title>NTS - Topology Suite (PCL Version)</title>
7+
<authors>NetTopologySuite - Team</authors>
8+
<owners>NetTopologySuite - Team</owners>
9+
<licenseUrl>http://www.gnu.org/licenses/lgpl.html</licenseUrl>
10+
<projectUrl>http://code.google.com/p/nettopologysuite</projectUrl>
11+
<requireLicenseAcceptance>true</requireLicenseAcceptance>
12+
<description>
13+
The NTS Topology Suite is an API for modelling and manipulating 2-dimensional linear geometry. It provides numerous geometric predicates and functions. NTS conforms to the Simple Features Specification.
14+
This package contains Wintellect's PowerCollections and references GeoAPI.
15+
</description>
16+
<summary>NTS Topology Suite is a direct-port of all the functionalities offered by JTS Topology Suite</summary>
17+
<tags>NTS Topology OGC SFS</tags>
18+
<copyright>Copyright 2007-2013</copyright>
19+
<language>en-US</language>
20+
<dependencies>
21+
<dependency id="GeoAPI.PCL" version="[1.7.2,1.8)" />
22+
</dependencies>
23+
</metadata>
24+
<files>
25+
<file src="Release\PCL\AnyCPU\NetTopologySuite.dll" target="lib\portable-net403+sl5+win8+wp8\NetTopologySuite.dll" />
26+
<file src="Release\PCL\AnyCPU\PowerCollections.dll" target="lib\portable-net403+sl5+win8+wp8\PowerCollections.dll" />
27+
</files>
28+
</package>

‎SharedAssemblyVersion.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
[assembly: AssemblyVersion("1.13.3")]
1515
[assembly: AssemblyFileVersion("1.13.3")]
1616

17-
// Generated by the MSBuild WriteCodeFragment class on 23/04/2014 15:15:37.
17+
// Generated by the MSBuild WriteCodeFragment class on 23/04/2014 16:49:10.
1818

‎TeamCity.targets

+4-3
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
ContinueOnError="true"
7777
/>
7878
</Target>
79-
<Target Name="BuildReleasePCL" DependsOnTargets="BuildRelease">
79+
<Target Name="BuildReleasePCL" DependsOnTargets="CleanRelease;SetVersion">
8080
<MSBuild Projects="$(SolutionFile)"
8181
Targets="PCL\PowerCollections_PCL;PCL\GeoAPI_PCL;PCL\NetTopologySuite_PCL;PCL\ProjNET_PCL;PCL\GeoAPI_BootStrapper_NetTopologySuite"
8282
Properties="Configuration=Release;TargetFrameworkVersion=v4.0;TargetFrameworkProfile=Profile147;DefineConstants=TRACE;PCL;BaseIntermediateOutputPath=$(MSBuildProjectDirectory)\obj\PCL\"
@@ -101,7 +101,7 @@
101101
Properties="Configuration=Release;TargetFrameworkVersion=v4.0;TargetFrameworkProfile=Client;DefineConstants=TRACE;UseCoordinateBufferPublicly;NET20;NET35;NET40;"
102102
/>
103103
</Target>
104-
<Target Name="UnitTestsPCL" DependsOnTargets="UnitTests">
104+
<Target Name="UnitTestsPCL" DependsOnTargets="BuildReleasePCL">
105105
<MSBuild Projects="$(SolutionFile)"
106106
Targets="NetTopologySuite_Tests\PCL\NetTopologySuite_Tests_NUnit_PCL;"
107107
Properties="Configuration=Release;TargetFrameworkVersion=v4.0;TargetFrameworkProfile=Profile147;DefineConstants=TRACE;PCL;UseCoordinateBufferPublicly;"
@@ -118,8 +118,9 @@
118118
<Exec Command="$(NuGetCommand) ProjNet\ProjNet.nuspec -Version $(ProjNetVersion) -outputdirectory $(NuGetOutDir)"/>
119119
<!--Exec Command="$(NuGetCommand) NTS.Converter.DotSpatial.nuspec -Version $(AsmFileVersion) -outputdirectory $(NuGetOutDir)"/-->
120120
</Target>
121-
<Target Name="NuGetPackPCL" DependsOnTargets="NuGetPack">
121+
<Target Name="NuGetPackPCL" DependsOnTargets="BuildReleasePCL">
122122
<Exec Command="$(NuGetCommand) GeoAPI\GeoAPI.PCL.nuspec -Version $(GeoAPIVersion) -outputdirectory $(NuGetOutDir)"/>
123+
<Exec Command="$(NuGetCommand) NTS.PCL.nuspec -Version $(AsmFileVersion) -outputdirectory $(NuGetOutDir)"/>
123124
</Target>
124125

125126
<!--

0 commit comments

Comments
 (0)
Please sign in to comment.