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 `