diff --git a/.github/workflows/DDTV_Dev.yml b/.github/workflows/DDTV_Dev.yml index f3a135ea..cb8b0b19 100644 --- a/.github/workflows/DDTV_Dev.yml +++ b/.github/workflows/DDTV_Dev.yml @@ -125,7 +125,7 @@ jobs: run: cd Server && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true --output build_output - name: Build Update - run: cd Update && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true --publishTrimmed --output build_update_output + run: cd Update && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true /p:PublishTrimmed=true --output build_update_output - name: Move Update (Linux or macOS) if: runner.os != 'Windows' @@ -286,7 +286,7 @@ jobs: run: cd Desktop && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true --output build_output - name: Build Update - run: cd Update && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true --publishTrimmed --output build_update_output + run: cd Update && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true /p:PublishTrimmed=true --output build_update_output - name: Move Update (Windows) if: runner.os == 'Windows' @@ -416,7 +416,7 @@ jobs: run: cd Client && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true --output build_output - name: Build Update - run: cd Update && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true --publishTrimmed --output build_update_output + run: cd Update && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true /p:PublishTrimmed=true --output build_update_output - name: Move Update (Windows) if: runner.os == 'Windows' diff --git a/.github/workflows/DDTV_Release.yml b/.github/workflows/DDTV_Release.yml index 116ce7d8..9dc5daf2 100644 --- a/.github/workflows/DDTV_Release.yml +++ b/.github/workflows/DDTV_Release.yml @@ -125,7 +125,7 @@ jobs: run: cd Server && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true --output build_output - name: Build Update - run: cd Update && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true --publishTrimmed --output build_update_output + run: cd Update && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true /p:PublishTrimmed=true --output build_update_output - name: Move Update (Linux or macOS) if: runner.os != 'Windows' @@ -298,7 +298,7 @@ jobs: run: cd Desktop && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true --output build_output - name: Build Update - run: cd Update && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true --publishTrimmed --output build_update_output + run: cd Update && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true /p:PublishTrimmed=true --output build_update_output - name: Move Update (Windows) if: runner.os == 'Windows' @@ -427,7 +427,7 @@ jobs: run: cd Client && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true --output build_output - name: Build Update - run: cd Update && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true --publishTrimmed --output build_update_output + run: cd Update && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true /p:PublishTrimmed=true --output build_update_output - name: Move Update (Windows) if: runner.os == 'Windows' diff --git a/.github/workflows/DDTV_Test.yml b/.github/workflows/DDTV_Test.yml index 996cce86..b5b1f1d7 100644 --- a/.github/workflows/DDTV_Test.yml +++ b/.github/workflows/DDTV_Test.yml @@ -125,7 +125,7 @@ jobs: run: cd Server && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true --output build_output - name: Build Update - run: cd Update && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true --publishTrimmed --output build_update_output + run: cd Update && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true /p:PublishTrimmed=true --output build_update_output - name: Move Update (Linux or macOS) if: runner.os != 'Windows' @@ -417,7 +417,7 @@ jobs: run: cd Client && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true --output build_output - name: Build Update - run: cd Update && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true --publishTrimmed --output build_update_output + run: cd Update && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true /p:PublishTrimmed=true --output build_update_output - name: Move Update (Windows) if: runner.os == 'Windows'