From c61a364ddd357738e9ecdf6ca1acbdda68c109ee Mon Sep 17 00:00:00 2001 From: BadMagic100 Date: Mon, 8 Apr 2024 00:08:14 -0700 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 76b5b09..5a80320 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,11 +16,11 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Setup .NET - uses: actions/setup-dotnet@v4 + - name: Setup Nuget + uses: nuget/setup-nuget@v2 - name: Add msbuild to PATH uses: microsoft/setup-msbuild@v2 - name: Restore dependencies - run: dotnet restore + run: nuget restore - name: Build - run: msbuild HKModTemplateAutomated.sln -property:Configuration=Release + run: msbuild /p:Configuration=Release /p:DeployExtension=false