From 8cfa4e7c568dcf7207f28222dada80aac0fb4673 Mon Sep 17 00:00:00 2001 From: Charles Lowell Date: Mon, 13 Feb 2017 12:58:01 -0800 Subject: [PATCH] Correct Identity.API path --- build-image-web-spa.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-image-web-spa.ps1 b/build-image-web-spa.ps1 index deee445d1..c1361d966 100644 --- a/build-image-web-spa.ps1 +++ b/build-image-web-spa.ps1 @@ -21,7 +21,7 @@ dotnet build $webSPAPathToJson dotnet publish $webSPAPathToJson -o $webSPAPathToPub # *** identitySvc image *** -$identitySvcPathToJson = $scriptPath + "\src\Services\Identity\eShopOnContainers.Identity\project.json" +$identitySvcPathToJson = $scriptPath + "\src\Services\Identity\Identity.API\project.json" Write-Host "identitySvcPathToJson is $identitySvcPathToJson" -ForegroundColor Yellow $identitySvcPathToPub = $scriptPath + "\pub\identity" Write-Host "identitySvcPathToPub is $identitySvcPathToPub" -ForegroundColor Yellow