Skip to content

Commit

Permalink
Merge pull request dotnet#6868 from mmitche/disable-node-reuse
Browse files Browse the repository at this point in the history
Disable node reuse
  • Loading branch information
mmitche authored Aug 23, 2016
2 parents aeb3354 + 8d46dc0 commit 24978b9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 30 deletions.
2 changes: 1 addition & 1 deletion BuildToolsVersion.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.26-prerelease-00718-04
1.0.26-prerelease-00719-02
38 changes: 9 additions & 29 deletions config.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,6 @@
"values": [],
"defaultValue": ""
},
"MsBuildParameters": {
"description": "MsBuild building options.",
"valueType": "passThrough",
"values": [],
"defaultValue": "/nologo /verbosity:minimal /clp:Summary"
},
"MsBuildFileLogging": {
"description": "MsBuild logging options.",
"valueType": "passThrough",
Expand Down Expand Up @@ -228,12 +222,6 @@
"values": [ "real" ],
"defaultValue": ""
},
"maxcpucount": {
"description": "Msbuild internal command.",
"valueType": "internal",
"values": [],
"defaultValue": ""
},
"CLRTestPriorityToBuild": {
"description": "Sets priority to build test.",
"valueType": "property",
Expand Down Expand Up @@ -342,12 +330,6 @@
"CLRTestPriorityToBuild": "default"
}
},
"sequential": {
"description": "Sets sequential build",
"settings": {
"maxcpucount": "default"
}
},
"skipRestore": {
"description": "Skips restoring packages during build.",
"settings": {
Expand All @@ -364,8 +346,6 @@
"defaultValues": {
"toolName": "msbuild",
"settings": {
"maxcpucount": "default",
"MsBuildParameters": "default",
"MsBuildLog": "default",
"MsBuildWrn": "default",
"MsBuildErr": "default"
Expand Down Expand Up @@ -422,8 +402,6 @@
"defaultValues": {
"toolName": "msbuild",
"settings": {
"MsBuildParameters": "default",
"maxcpucount": "default",
"MsBuildFileLogging": "/flp:v=detailed;LogFile=sync.log"
}
}
Expand Down Expand Up @@ -465,8 +443,6 @@
"toolName": "msbuild",
"settings": {
"Project": "./src/publish.proj",
"MsBuildParameters": "default",
"maxcpucount": "default",
"MsBuildFileLogging": "/flp:v=detailed;LogFile=publish-packages.log"
}
}
Expand Down Expand Up @@ -495,9 +471,7 @@
"defaultValues": {
"toolName": "msbuild",
"settings": {
"MsBuildParameters": "default",
"__BuildOS": "default",
"maxcpucount": "default",
"MsBuildFileLogging": "/flp:v=detailed;Append;LogFile=build-packages.log",
"MsBuildEventLogging": "default"
}
Expand All @@ -506,9 +480,15 @@
},
"tools": {
"msbuild": {
"run": {
"windows": "Tools\\msbuild.cmd",
"unix": "Tools/msbuild.sh"
"osSpecific": {
"windows": {
"defaultParameters": "/nologo /verbosity:minimal /clp:Summary /maxcpucount /nodeReuse:false",
"path": "Tools/msbuild.cmd"
},
"unix": {
"defaultParameters": "/nologo /verbosity:minimal /clp:Summary /maxcpucount",
"path": "Tools/msbuild.sh"
}
},
"valueTypes": {
"property": "/p:{name}={value}",
Expand Down

0 comments on commit 24978b9

Please sign in to comment.