Browse Source
Merge pull request #1244 from colinin/update-build-script
ci: update build scipt
pull/1249/head
yx lin
9 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
3 additions and
3 deletions
-
build/build-aspnetcore-build-sln.ps1
-
build/build-aspnetcore-publish-sln.ps1
|
|
|
@ -2,7 +2,7 @@ |
|
|
|
|
|
|
|
# Build all solutions |
|
|
|
foreach ($solution in $solutionArray) { |
|
|
|
dotnet build $solution.File --no-cache |
|
|
|
dotnet build $solution.File -c Release --no-cache |
|
|
|
} |
|
|
|
|
|
|
|
Set-Location $rootFolder |
|
|
|
@ -2,8 +2,8 @@ |
|
|
|
|
|
|
|
# Build all solutions |
|
|
|
foreach ($solution in $solutionArray) { |
|
|
|
#dotnet pack -c Release --include-source --include-symbols $solution.File --no-cache |
|
|
|
dotnet build -c Release $solution.File --no-cache |
|
|
|
dotnet pack $solution.File -c Release --include-source --include-symbols |
|
|
|
#dotnet build -c Release $solution.File --no-cache |
|
|
|
} |
|
|
|
|
|
|
|
Set-Location $rootFolder |