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:
authorJan Kotas <jkotas@microsoft.com>2016-04-06 07:28:29 +0300
committerJan Kotas <jkotas@microsoft.com>2016-04-18 11:09:05 +0300
commit02090707eb3353b782f4f04c17f1d8ce7ec49fc9 (patch)
treebdaf5efa809fdf0c722df158487a634a4ab3fc52 /dir.traversal.targets
parent3584e6cdfc00da11c74069f3f8cf8a6279088081 (diff)
Switch to standardized init-tools scripts
- Switch over to using standardized init-tools script used by other repos - Update to recent buildtools - Switch to running msbuild against CoreCLR instead of mono - Make build scripts to be otherwise more similar to the ones used by other repos
Diffstat (limited to 'dir.traversal.targets')
-rw-r--r--dir.traversal.targets12
1 files changed, 6 insertions, 6 deletions
diff --git a/dir.traversal.targets b/dir.traversal.targets
index ad5a7102b..7ea706da6 100644
--- a/dir.traversal.targets
+++ b/dir.traversal.targets
@@ -10,8 +10,8 @@
however since the project names are unique it will essentially force each to run in its own batch -->
<MSBuild Targets="$(DefaultBuildAllTarget)"
Projects="@(Project)"
- Condition="'$(SerializeProjects)'=='true'"
- Properties="Dummy=%(Identity);DefaultBuildAllTarget=$(DefaultBuildAllTarget);BuildAllProjects=true"
+ Condition="'$(SerializeProjects)'=='true' AND '%(Identity)' != ''"
+ Properties="DefaultBuildAllTarget=$(DefaultBuildAllTarget);BuildAllProjects=true"
ContinueOnError="ErrorAndContinue" />
<MSBuild Targets="$(DefaultBuildAllTarget)"
@@ -34,8 +34,8 @@
however since the project names are unique it will essentially force each to run in its own batch -->
<MSBuild Targets="$(DefaultCleanAllTarget)"
Projects="@(Project)"
- Condition="'$(SerializeProjects)'=='true'"
- Properties="Dummy=%(Identity);CleanAllProjects=true"
+ Condition="'$(SerializeProjects)'=='true' AND '%(Identity)' != ''"
+ Properties="CleanAllProjects=true"
ContinueOnError="ErrorAndContinue" />
<MSBuild Targets="$(DefaultCleanAllTarget)"
@@ -60,8 +60,8 @@
however since the project names are unique it will essentially force each to run in its own batch -->
<MSBuild Targets="$(DefaultRestoreAllPackagesTarget)"
Projects="@(Project)"
- Condition="'$(SerializeProjects)'=='true'"
- Properties="Dummy=%(Identity);RestoreAllPackages=true"
+ Condition="'$(SerializeProjects)'=='true' AND '%(Identity)' != ''"
+ Properties="RestoreAllPackages=true"
ContinueOnError="ErrorAndContinue" />
<MSBuild Targets="$(DefaultRestoreAllPackagesTarget)"