aboutsummaryrefslogtreecommitdiff
path: root/build/Common.targets
diff options
context:
space:
mode:
authorArnoldZokas <arnold.zokas@coderoom.net>2010-11-30 20:01:14 +0000
committerArnoldZokas <arnold.zokas@coderoom.net>2010-11-30 20:01:14 +0000
commit6c1033ce2aa1416ab5e558e26f53c9c5aa754d50 (patch)
tree524d3c2e3b6ebaf1855955838d7b4f5a4c27a66a /build/Common.targets
parent01d20fc6e6d353f5bafc3dd5a704cf935fe473bf (diff)
downloadprotobuf-6c1033ce2aa1416ab5e558e26f53c9c5aa754d50.tar.gz
protobuf-6c1033ce2aa1416ab5e558e26f53c9c5aa754d50.tar.bz2
protobuf-6c1033ce2aa1416ab5e558e26f53c9c5aa754d50.zip
Migrated target '_CompileGeneratedSource'
Diffstat (limited to 'build/Common.targets')
-rw-r--r--build/Common.targets6
1 files changed, 5 insertions, 1 deletions
diff --git a/build/Common.targets b/build/Common.targets
index eba67041..1b87ee16 100644
--- a/build/Common.targets
+++ b/build/Common.targets
@@ -25,7 +25,11 @@
<Copy SourceFiles="%(GeneratedSource.Identity)" DestinationFiles="%(GeneratedSource.TargetDirectory)\%(GeneratedSource.Filename)%(GeneratedSource.Extension)" />
</Target>
- <Target Name="_Test" DependsOnTargets="_CopyGeneratedSource">
+ <Target Name="_CompileGeneratedSource" DependsOnTargets="_CopyGeneratedSource">
+ <MSBuild Projects="$(SolutionFile)" Properties="Configuration=$(BuildConfiguration)" BuildInParallel="true" />
+ </Target>
+
+ <Target Name="_Test" DependsOnTargets="_CompileGeneratedSource">
<Exec Command="&quot;E:\dotnet-protobufs\lib\NUnit 2.2.8.0\nunit-console.exe&quot; %(TestContainer.Identity) /xml:$(BuildOutputDirectory)\%(TestContainer.Filename).$(BuildConfiguration).xml" />
</Target>