diff --git a/build/build-aspnetcore-release.ps1 b/build/build-aspnetcore-release.ps1 index fa10cdb59..c19a176b2 100644 --- a/build/build-aspnetcore-release.ps1 +++ b/build/build-aspnetcore-release.ps1 @@ -3,7 +3,7 @@ # Build all solutions foreach ($service in $serviceArray) { Set-Location $service.Path - $publishPath = $rootFolder + "/aspnet-core/services/Publish/" + $service.Service + $publishPath = $rootFolder + "/../aspnet-core/services/Publish/" + $service.Service dotnet publish -c Release -o $publishPath --no-cache --no-restore Copy-Item (Join-Path $service.Path "Dockerfile") -Destination $publishPath -Recurse }