From 2ec726cfe9b3035e6ebebabc5a1436d830d52764 Mon Sep 17 00:00:00 2001 From: Sam Byass Date: Fri, 22 Jan 2021 12:23:25 +0000 Subject: [PATCH] Can we just not rename command line switches please. Thanks. --- .github/workflows/dotnet-core-pull.yml | 6 +++--- .github/workflows/dotnet-core.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/dotnet-core-pull.yml b/.github/workflows/dotnet-core-pull.yml index f6513750..08d618b8 100644 --- a/.github/workflows/dotnet-core-pull.yml +++ b/.github/workflows/dotnet-core-pull.yml @@ -18,21 +18,21 @@ jobs: - name: Install dependencies run: dotnet restore - name: Build - Windows x64 - run: dotnet publish --configuration Release --no-restore -r win-x64 /p:PublishSingleFile=true /p:IncludeNativeLibrariesInSingleFile=true + run: dotnet publish --configuration Release --no-restore -r win-x64 /p:PublishSingleFile=true /p:IncludeNativeLibrariesForSelfExtract=true - name: Upload Win x64 Artifact uses: actions/upload-artifact@v2 with: name: Cpp2IL-Win path: ./Cpp2IL/bin/Release/net5.0/win-x64/publish/Cpp2IL.exe - name: Build - Ubuntu x64 - run: dotnet publish --configuration Release --no-restore -r ubuntu-x64 /p:PublishSingleFile=true /p:IncludeNativeLibrariesInSingleFile=true + run: dotnet publish --configuration Release --no-restore -r ubuntu-x64 /p:PublishSingleFile=true /p:IncludeNativeLibrariesForSelfExtract=true - name: Upload Ubuntu x64 Artifact uses: actions/upload-artifact@v2 with: name: Cpp2IL-Linux path: ./Cpp2IL/bin/Release/net5.0/ubuntu-x64/publish/Cpp2IL - name: Build - OSX x64 - run: dotnet publish --configuration Release --no-restore -r osx-x64 /p:PublishSingleFile=true /p:IncludeNativeLibrariesInSingleFile=true + run: dotnet publish --configuration Release --no-restore -r osx-x64 /p:PublishSingleFile=true /p:IncludeNativeLibrariesForSelfExtract=true - name: Upload OSX x64 Artifact uses: actions/upload-artifact@v2 with: diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index 8a117de2..98c138f8 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -22,13 +22,13 @@ jobs: working-directory: ./LibCpp2IL/ - name: Build - Windows x64 working-directory: ./Cpp2IL/ - run: dotnet publish --configuration Release --no-restore -r win-x64 /p:PublishSingleFile=true /p:IncludeNativeLibrariesInSingleFile=true + run: dotnet publish --configuration Release --no-restore -r win-x64 /p:PublishSingleFile=true /p:IncludeNativeLibrariesForSelfExtract=true - name: Build - Ubuntu x64 working-directory: ./Cpp2IL/ - run: dotnet publish --configuration Release --no-restore -r ubuntu-x64 /p:PublishSingleFile=true /p:IncludeNativeLibrariesInSingleFile=true + run: dotnet publish --configuration Release --no-restore -r ubuntu-x64 /p:PublishSingleFile=true /p:IncludeNativeLibrariesForSelfExtract=true - name: Build - OSX x64 working-directory: ./Cpp2IL/ - run: dotnet publish --configuration Release --no-restore -r osx-x64 /p:PublishSingleFile=true /p:IncludeNativeLibrariesInSingleFile=true + run: dotnet publish --configuration Release --no-restore -r osx-x64 /p:PublishSingleFile=true /p:IncludeNativeLibrariesForSelfExtract=true - name: Upload Common Lib Files uses: actions/upload-artifact@v2 with: