mirror of https://github.com/abpframework/abp.git
3 changed files with 21 additions and 1 deletions
@ -0,0 +1,14 @@ |
|||||
|
$buildFolder = (Get-Item -Path ".\" -Verbose).FullName |
||||
|
$outputFolder = Join-Path $buildFolder "outputs" |
||||
|
|
||||
|
$slnFolder = Join-Path $buildFolder "..\" |
||||
|
$abpDeskFolder = Join-Path $slnFolder "src/AbpDesk" |
||||
|
$abpDeskWebFolder = Join-Path $abpDeskFolder "AbpDesk.Web.Mvc" |
||||
|
|
||||
|
Set-Location $slnFolder |
||||
|
dotnet restore |
||||
|
|
||||
|
Set-Location $abpDeskWebFolder |
||||
|
dotnet publish --output (Join-Path $outputFolder "AbpDesk/Web") |
||||
|
|
||||
|
Set-Location $buildFolder |
||||
Loading…
Reference in new issue