1
0
Fork 0
mirror of https://github.com/oMaN-Rod/nxDumpFuse.git synced 2024-09-19 13:33:26 +01:00
nxDumpFuse/publish.ps1

14 lines
394 B
PowerShell
Raw Normal View History

2021-10-28 23:49:27 +01:00
$project = Join-Path $PSScriptRoot '\src\nxDumpFuse\nxDumpFuse.csproj'
$output = Join-Path $PSScriptRoot '\src\nxDumpFuse\bin\Release\net5.0\publish\'
$runtimes = @(
"win-x64"
"osx-x64"
"linux-x64"
)
# clear previous releases
Remove-Item "$output\*" -Force -Recurse -Confirm:$true
$runtimes | %{
& dotnet publish $project -c release -r $_ -o ("{0}\{1}" -f $output,$_)
}