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

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaurav Khanna <gkhanna@microsoft.com>2015-10-30 09:18:13 +0300
committerGaurav Khanna <gkhanna@microsoft.com>2015-10-30 11:42:10 +0300
commit8f98e723526496d3f7d099faed09fc980a195b77 (patch)
tree411c624ab1973723de3dc759a95c9117e5d6ff4e /build.proj
parentd491257f4dab61a489d5fde0881c4a3afc8b4186 (diff)
Fix accidental cleanup of Native project files during clean build of managed components. Also fixed the path where CMake generated Runtime.vcxproj would drop runtime.lib for ReproNativeCpp and ReproNative projects to pickup.
Diffstat (limited to 'build.proj')
-rw-r--r--build.proj4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.proj b/build.proj
index 715e68432..64d3c810c 100644
--- a/build.proj
+++ b/build.proj
@@ -32,9 +32,9 @@
<!-- Override RestorePackages from dir.traversal.targets and do a batch restore -->
<Target Name="RestorePackages" DependsOnTargets="BatchRestorePackages" />
- <!-- Override clean from dir.traversal.targets and just remove the full BinDir -->
+ <!-- Override clean from dir.traversal.targets and just remove the full BinDir unless build.[cmd|sh] has already done the cleaning -->
<Target Name="Clean">
- <RemoveDir Directories="$(ObjDir)" />
+ <RemoveDir Condition="'$(CleanedTheBuild)' != '1'" Directories="$(ObjDir)" />
</Target>
</Project> \ No newline at end of file