From 5c1d39e7fe3c7ffa1af10d8ab720710a588f8d7d Mon Sep 17 00:00:00 2001 From: Miepee <38186597+Miepee@users.noreply.github.com> Date: Mon, 23 Jan 2023 20:46:46 +0100 Subject: [PATCH] surpress level 4 warnings --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b60da1a..b3263be 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -38,7 +38,7 @@ jobs: run: dotnet restore - name: Build working-directory: ./AM2RPortHelperCLI - run: dotnet publish ${{ matrix.COMMAND }} -c "${{ matrix.configuration }}" + run: dotnet publish ${{ matrix.COMMAND }} -c "${{ matrix.configuration }}" /p:WarningLevel=3 # Steps for uploading artifacts. - name: Zip to Archive run: 7z a -tzip ${{ matrix.os }}.zip ./${{ matrix.ARTIFACT }} @@ -83,7 +83,7 @@ jobs: run: dotnet restore - name: Build working-directory: ./AM2RPortHelperGUI/${{ matrix.DIR }} - run: dotnet publish ${{ matrix.COMMAND }} -c "${{ matrix.configuration }}" + run: dotnet publish ${{ matrix.COMMAND }} -c "${{ matrix.configuration }}" /p:WarningLevel=3 # Steps for uploading artifacts. - name: Zip to Archive run: 7z a -tzip ${{ matrix.os }}.zip ./AM2RPortHelperGUI/${{ matrix.ARTIFACT }}