Skip to content

Commit

Permalink
chore(build-script): Updated build script to force-clean the bin and …
Browse files Browse the repository at this point in the history
…obj folders
  • Loading branch information
arendvw committed Apr 1, 2020
1 parent d3165cf commit f87fa6f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions release.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,9 @@ $yakVersion = "$($newVersion.Major).$($newVersion.Minor).$($newVersion.Build)";
## *\AssemblyInfo.cs
foreach ($project in $projects) {
UpdateVersion "$($project)\Properties\AssemblyInfo.cs" $newVersion
# Force clean of project
Remove-Item -path "$($project)\bin\*" -recurse
Remove-Item -path "$($project)\obj\*" -recurse
}

Write-Host "Building new version.."
Expand Down

0 comments on commit f87fa6f

Please sign in to comment.