From ecaab559348fd7a93ea67e345256707bbe8dec95 Mon Sep 17 00:00:00 2001 From: ChsBuffer <33744752+chsbuffer@users.noreply.github.com> Date: Tue, 19 Oct 2021 17:32:35 +0800 Subject: [PATCH] Revert default build SelfContained --- build.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.ps1 b/build.ps1 index 7eb9f1b1..c486f47e 100644 --- a/build.ps1 +++ b/build.ps1 @@ -11,11 +11,11 @@ param ( [Parameter()] [bool] - $SelfContained = $True, + $SelfContained = $False, [Parameter()] [bool] - $PublishReadyToRun = $True, + $PublishReadyToRun = $False, [Parameter()] [bool] @@ -32,7 +32,7 @@ dotnet publish ` -r 'win-x64' ` -p:Platform='x64' ` -p:SelfContained=$SelfContained ` - -p:PublishTrimmed=$SelfContained ` + -p:PublishTrimmed=$False ` -p:PublishReadyToRun=$PublishReadyToRun ` -p:PublishSingleFile=$PublishSingleFile ` -p:IncludeNativeLibrariesForSelfExtract=$SelfContained `