summaryrefslogtreecommitdiff
path: root/eng/common/msbuild.ps1
diff options
context:
space:
mode:
authorSven Boemer <sbomer@gmail.com>2018-12-14 17:03:40 -0800
committerGitHub <noreply@github.com>2018-12-14 17:03:40 -0800
commit483135b05e853290d6890f9f5f72aa0bb96aca23 (patch)
tree173e74d54e25364c317ed894729dbf62665e041a /eng/common/msbuild.ps1
parent1df63bdbce55f2feb60238c244c6723dd9530e82 (diff)
downloadcoreclr-483135b05e853290d6890f9f5f72aa0bb96aca23.tar.gz
coreclr-483135b05e853290d6890f9f5f72aa0bb96aca23.tar.bz2
coreclr-483135b05e853290d6890f9f5f72aa0bb96aca23.zip
Publish packages in Azure DevOps official build (#21536)
This enables coreclr participation in dependency flow.
Diffstat (limited to 'eng/common/msbuild.ps1')
-rw-r--r--eng/common/msbuild.ps16
1 files changed, 5 insertions, 1 deletions
diff --git a/eng/common/msbuild.ps1 b/eng/common/msbuild.ps1
index 3cd667219a..5810a746b1 100644
--- a/eng/common/msbuild.ps1
+++ b/eng/common/msbuild.ps1
@@ -11,6 +11,10 @@ Param(
. $PSScriptRoot\tools.ps1
try {
+ if ($ci) {
+ $nodeReuse = $false
+ }
+
MSBuild @extraArgs
}
catch {
@@ -20,4 +24,4 @@ catch {
ExitWithExitCode 1
}
-ExitWithExitCode 0 \ No newline at end of file
+ExitWithExitCode 0