Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Hendrix <jhendrix@microsoft.com>2015-10-28 00:13:19 +0300
committerJoel Hendrix <jhendrix@microsoft.com>2015-10-28 00:13:19 +0300
commitde7aedba0239465427870ac4659473f8c72291ef (patch)
tree7cac3a3d81bc9d05b03b9cad438d5c82225c9c55 /build.proj
parentd4879d9ac795fda97520a6ac825ca3a774c441cf (diff)
Add a hook for executing targets after the main build.
There is a need to execute some targets after the product and test binaries have been built; this change adds such a hook, PostBuildDependsOn, allowing targets to execute post-build. Move to latest version of build tools. Fixed a build issue for XML serialization perf tests.
Diffstat (limited to 'build.proj')
-rw-r--r--build.proj6
1 files changed, 6 insertions, 0 deletions
diff --git a/build.proj b/build.proj
index f793855f2a..0a4be03ed2 100644
--- a/build.proj
+++ b/build.proj
@@ -2,8 +2,14 @@
<Project ToolsVersion="12.0" DefaultTargets="BuildAndTest" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="dir.props" />
+ <!-- required to build the projects in their specified order -->
+ <PropertyGroup>
+ <SerializeProjects>true</SerializeProjects>
+ </PropertyGroup>
+
<ItemGroup>
<Project Include="src\dirs.proj" />
+ <Project Include="src\post.msbuild" />
</ItemGroup>
<Import Project="dir.targets" />