From 6b6c51899262cafda2dd23bdf77bfc7f3471bc16 Mon Sep 17 00:00:00 2001 From: cKey <35512826+colinin@users.noreply.github.com> Date: Mon, 16 May 2022 08:51:31 +0800 Subject: [PATCH] fix: The output path of the build script is incorrect --- build/build-aspnetcore-release.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }