mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
10 lines
331 B
PowerShell
10 lines
331 B
PowerShell
if ($env:BILILIVERECORDER_RELEASE)
|
|
{
|
|
msbuild /t:Publish /verbosity:minimal /p:Configuration=Release /p:ApplicationVersion="$env:p_version" /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
|
|
$host.SetShouldExit($LastExitCode)
|
|
}
|
|
else
|
|
{
|
|
Write-Host "Not a new release, skipping msbuild /t:Publish"
|
|
}
|