mirror of
https://github.com/m-lamonaca/script-launcher.git
synced 2025-04-05 18:06:28 +00:00
Update publish script
This commit is contained in:
parent
a3db4d5fc3
commit
1df685119d
2 changed files with 26 additions and 1 deletions
26
dotnet-publish.ps1
Normal file
26
dotnet-publish.ps1
Normal file
|
@ -0,0 +1,26 @@
|
|||
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\
|
||||
}
|
|
@ -1 +0,0 @@
|
|||
dotnet publish -o out -c Release --self-contained -p:PublishSingleFile=true -p:PublishTrimmed=true -f net6.0 -r win-x64 .\src\
|
Loading…
Add table
Reference in a new issue