forked from NetTopologySuite/NetTopologySuite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTeamCity.proj
28 lines (22 loc) · 1.03 KB
/
TeamCity.proj
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
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<SolutionFile>NetTopologySuite.sln</SolutionFile>
</PropertyGroup>
<Target Name="CleanDebug">
<MSBuild Projects="$(SolutionFile)" Targets="Clean" Properties="Configuration=Debug" />
</Target>
<Target Name="CleanRelease">
<MSBuild Projects="$(SolutionFile)" Targets="Clean" Properties="Configuration=Release" />
</Target>
<Target Name="BuildDebug">
<MSBuild Projects="$(SolutionFile)" Targets="NetTopologySuite" Properties="Configuration=Debug" />
</Target>
<Target Name="BuildRelease">
<MSBuild Projects="$(SolutionFile)" Targets="NetTopologySuite" Properties="Configuration=Release" />
</Target>
<!-- build only for now, test on build server -->
<Target Name="UnitTests">
<MSBuild Projects="$(SolutionFile)" Targets="NetTopologySuite_Tests\NetTopologySuite_Tests_NUnit" Properties="Configuration=Release" />
</Target>
<!-- TODO: add targets here to build zip, NuGet, ... -->
</Project>