diff options
author | segfault <toni@impl.cc> | 2022-09-18 16:15:38 +0200 |
---|---|---|
committer | Toni <matzeton@googlemail.com> | 2022-09-21 18:03:22 +0200 |
commit | 3db6413ab08516d5c939611f254dbcff0c09bf5d (patch) | |
tree | 54b2aae68ad9a8c03f027e50e64413a3b9267a31 /.github/workflows/build-msbuild.yml | |
parent | 50ee6768b75fd331bc82f23b2290c69e786889d0 (diff) |
Fixed VS2019 build.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to '.github/workflows/build-msbuild.yml')
-rw-r--r-- | .github/workflows/build-msbuild.yml | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/.github/workflows/build-msbuild.yml b/.github/workflows/build-msbuild.yml index 289c665ac..ccec10dee 100644 --- a/.github/workflows/build-msbuild.yml +++ b/.github/workflows/build-msbuild.yml @@ -20,9 +20,6 @@ jobs: - name: Add msbuild to PATH uses: microsoft/setup-msbuild@v1.1 - - name: Build solution for release - run: msbuild windows/nDPI.sln -t:rebuild -property:Configuration=Release - - name: Build solution for debug run: msbuild windows/nDPI.sln -t:rebuild -property:Configuration=Debug @@ -30,5 +27,5 @@ jobs: uses: actions/upload-artifact@v2 with: name: build-artifacts - path: x64 + path: windows/bin retention-days: 14 |