Skip to content

Commit ccf1a8d

Browse files
authored
Remove BinClean dependency from build task (#1589)
MSBuild does incremental builds by nature, it is not necessary to do a clean and slows down subsequent builds. "Clean" task should be called if a clean is in fact required.
1 parent f9bde73 commit ccf1a8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PowerShellEditorServices.build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ task SetupHelpForTests {
210210
}
211211
}
212212

213-
task Build BinClean,{
213+
Task Build {
214214
exec { & $script:dotnetExe publish -c $Configuration .\src\PowerShellEditorServices\PowerShellEditorServices.csproj -f $script:NetRuntime.Standard }
215215
exec { & $script:dotnetExe publish -c $Configuration .\src\PowerShellEditorServices.Hosting\PowerShellEditorServices.Hosting.csproj -f $script:NetRuntime.PS7 }
216216
if (-not $script:IsNix)

0 commit comments

Comments
 (0)