From 153a3d275d43b750c3fa8bdf03a38f80f5198b93 Mon Sep 17 00:00:00 2001 From: jojo aquino Date: Mon, 21 Apr 2025 07:53:55 +0100 Subject: [PATCH] update make file --- make.ps1 | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/make.ps1 b/make.ps1 index 66590bc..16a318f 100644 --- a/make.ps1 +++ b/make.ps1 @@ -4,11 +4,15 @@ param( $OutputDir ) + +Remove-Item -Path $OutputDir -Recurse -Force + +dotnet publish .\EnotaryoPH\EnotaryoPH.DbMigration\EnotaryoPH.DbMigration.csproj --nologo --output "$OutputDir\migration" + cd EnotaryoPH/EnotaryoPH.Web npm install --production -dotnet publish EnotaryoPH.Web.csproj --nologo --output $OutputDir - +dotnet publish EnotaryoPH.Web.csproj --nologo --output "$OutputDir\web"