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: