mirror of
https://github.com/m-lamonaca/script-launcher.git
synced 2025-04-05 18:06:28 +00:00
26 lines
No EOL
400 B
PowerShell
26 lines
No EOL
400 B
PowerShell
function Get-Runtime
|
|
{
|
|
if($isLinux)
|
|
{
|
|
return "linux-x64";
|
|
}
|
|
|
|
if($isMac)
|
|
{
|
|
return "osx-x64";
|
|
}
|
|
|
|
if($isWindows)
|
|
{
|
|
return "win-x64";
|
|
}
|
|
|
|
return $null;
|
|
}
|
|
|
|
$runtime = Get-Runtime;
|
|
|
|
if($runtime -ne $null)
|
|
{
|
|
dotnet publish -o out -c Release --self-contained -p:PublishSingleFile=true -p:PublishTrimmed=true -f net6.0 -r $runtime .\src\
|
|
} |