mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
425 B
15 lines
425 B
$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
|