15 lines
241 B
PowerShell
15 lines
241 B
PowerShell
param(
|
|
[Parameter(Mandatory=$True, Position=0, ValueFromPipeline=$false)]
|
|
[System.String]
|
|
$OutputDir
|
|
)
|
|
|
|
cd EnotaryoPH/EnotaryoPH.Web
|
|
npm install --production
|
|
|
|
dotnet publish EnotaryoPH.Web.csproj --nologo --output $OutputDir
|
|
|
|
|
|
|
|
|