Browse Source

Merge pull request #312 from SychevIgor/SychevIgor/PublishRelease

release publish configuration for win/mac, because for Linux it's already done
pull/317/head
Cesar De la Torre 7 years ago
committed by GitHub
parent
commit
96f4601b62
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      cli-mac/build-bits.sh
  2. +1
    -1
      cli-windows/build-bits.ps1

+ 1
- 1
cli-mac/build-bits.sh View File

@ -25,7 +25,7 @@ do
echo -e "\e[33m\tRestoring project"
dotnet restore
echo -e "\e[33m\tBuilding and publishing projects"
dotnet publish -o obj/Docker/publish
dotnet publish -o obj/Docker/publish -c Release
popd
done


+ 1
- 1
cli-windows/build-bits.ps1 View File

@ -31,7 +31,7 @@ $projectPaths | foreach {
Write-Host "Publishing $projectPathAndFile to $outPath" -ForegroundColor Yellow
dotnet restore $projectPathAndFile
dotnet build $projectPathAndFile
dotnet publish $projectPathAndFile -o $outPath
dotnet publish $projectPathAndFile -o $outPath -c Release
}


Loading…
Cancel
Save