From 43beea968eb2a88f92a9171970c2f186fc6e78f2 Mon Sep 17 00:00:00 2001 From: BadMagic100 Date: Mon, 8 Apr 2024 00:17:18 -0700 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5a80320..49d4a7f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,11 +16,11 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Setup Nuget - uses: nuget/setup-nuget@v2 - - name: Add msbuild to PATH - uses: microsoft/setup-msbuild@v2 - - name: Restore dependencies - run: nuget restore + - name: Setup .NET build dependencies + uses: timheuer/bootstrap-dotnet@v1 + with: + nuget: 'false' + sdk: 'false' + msbuild: 'true' - name: Build - run: msbuild /p:Configuration=Release /p:DeployExtension=false + run: msbuild -restore /p:Configuration=Release /p:DeployExtension=false