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:
authorStephen Bonikowsky <stebon@microsoft.com>2016-04-21 19:52:10 +0300
committerStephen Bonikowsky <stebon@microsoft.com>2016-04-22 03:40:18 +0300
commit5cd26e757fb8d3c8ce9a7ecfc5dbeb15eed8a09d (patch)
tree63ade8855b1b5abd4cb6f500f294f1f231959e61 /build.proj
parentf406e629946e956f4542362c4cb1f4e186d13a2b (diff)
Adding a hook to do setup and cleanup steps.
* Initially wanted to add the hook to src\tests.builds but tests.builds is included as just one more item in the 'Project' collection and in testing the hook I couldn't get the import of the targets file to work and invoke the custom Targets in it. Moving it out of the 'Project' ItemGroup worked.
Diffstat (limited to 'build.proj')
-rw-r--r--build.proj3
1 files changed, 3 insertions, 0 deletions
diff --git a/build.proj b/build.proj
index 17ea19acf9..efc3127df5 100644
--- a/build.proj
+++ b/build.proj
@@ -134,4 +134,7 @@
<RemoveDir Directories="$(BinDir)" />
</Target>
+ <!-- Hook that can be used to insert custom build tasks to the build process such as setup and/or cleanup tasks -->
+ <Import Project="build.override.targets" Condition="Exists('build.override.targets')" />
+
</Project>