From afa075b55d4cd7296d66c1711691d28c2fa693c8 Mon Sep 17 00:00:00 2001 From: Antoine Pilote Date: Thu, 25 Apr 2024 22:04:00 -0400 Subject: [PATCH] Fix nuget missing package in build pi;eine --- .github/workflows/msbuild.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/msbuild.yml b/.github/workflows/msbuild.yml index f250598e..f690ebd3 100644 --- a/.github/workflows/msbuild.yml +++ b/.github/workflows/msbuild.yml @@ -31,7 +31,7 @@ jobs: working-directory: ${{env.GITHUB_WORKSPACE}} # Add additional options to the MSBuild command line here (like platform or verbosity level). # See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference - run: msbuild -verbosity:m /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}} + run: msbuild -verbosity:m /m /t:Restore;Build /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}} - name: Bundle Resources run: xcopy Editor\resources bin\Release-windows-x86_64\Editor\resources /I /E