From a5bef179987704aba6b84692d9fd05c6684101ea Mon Sep 17 00:00:00 2001 From: Scott Hanselman Date: Fri, 26 Mar 2021 15:25:47 -0700 Subject: [PATCH] making self contained smaller by sucking in native libraries --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0d83404..a32e6c5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: run: dotnet build --no-restore - name: Publish - run: dotnet publish --configuration Release --runtime ${{ matrix.runtime }} --output ./publish -p:PublishReadyToRun=true -p:PublishSingleFile=true --self-contained true -p:DebugType=None + run: dotnet publish --configuration Release --runtime ${{ matrix.runtime }} --output ./publish -p:PublishReadyToRun=true -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true --self-contained true -p:DebugType=None - name: Upload Build Artifacts uses: actions/upload-artifact@v2