Skip to content

Commit

Permalink
Merge pull request #6574 from KevinH-MS/master
Browse files Browse the repository at this point in the history
Set DeployExtension=false in BuildAndTest.proj...
  • Loading branch information
KevinH-MS committed Nov 7, 2015
2 parents 0cef61e + 9275261 commit 24004e8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions BuildAndTest.proj
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<Target Name="Build">
<MSBuild BuildInParallel="true"
Projects="$(RoslynSolution)"
Properties="RestorePackages=false;TreatWarningsAsErrors=true"
Properties="RestorePackages=false;TreatWarningsAsErrors=true;DeployExtension=false"
Targets="Build"/>
<MSBuild BuildInParallel="true"
Condition="'$(ManualTest)' == ''"
Expand All @@ -32,7 +32,7 @@
<Target Name="Clean">
<MSBuild BuildInParallel="true"
Projects="$(RoslynSolution)"
Properties="RestorePackages=false"
Properties="RestorePackages=false;DeployExtension=false"
Targets="Clean"/>
<MSBuild BuildInParallel="true"
Condition="'$(ManualTest)' == ''"
Expand All @@ -44,7 +44,7 @@
<Target Name="Rebuild">
<MSBuild BuildInParallel="true"
Projects="$(RoslynSolution)"
Properties="RestorePackages=false;TreatWarningsAsErrors=true"
Properties="RestorePackages=false;TreatWarningsAsErrors=true;DeployExtension=false"
Targets="Rebuild"/>
<MSBuild BuildInParallel="true"
Condition="'$(ManualTest)' == ''"
Expand Down
2 changes: 1 addition & 1 deletion cibuild.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ set BuildRestore=false
REM Because override the C#/VB toolset to build against our LKG package, it is important
REM that we do not reuse MSBuild nodes from other jobs/builds on the machine. Otherwise,
REM we'll run into issues such as https://github.com/dotnet/roslyn/issues/6211.
set MSBuildAdditionalCommandLineArgs=/nologo /v:m /m /nodeReuse:false /p:DeployExtension=false
set MSBuildAdditionalCommandLineArgs=/nologo /v:m /m /nodeReuse:false

:ParseArguments
if "%1" == "" goto :DoneParsing
Expand Down

0 comments on commit 24004e8

Please sign in to comment.