Skip to content

Commit

Permalink
Update msbuild.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanDmitriev1 committed Jan 9, 2024
1 parent 9c435ad commit 3bcc181
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,18 @@ jobs:
uses: actions/checkout@v2

- name: Setup MSBuild
uses: microsoft/[email protected]
uses: microsoft/[email protected]
with:
vs-prerelease: true

- name: Restore NuGet packages
run: nuget restore VisualAssistDarkTheme.sln
run: nuget restore VisualAssistDarkTheme.csproj

- name: Build solution
run: msbuild /p:Configuration=Release VisualAssistDarkTheme.sln
run: msbuild VisualAssistDarkTheme.csproj /p:Configuration=Release

- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: VisualAssistDarkTheme
path: ./bin/Release/VisualAssistDarkTheme.vsix

0 comments on commit 3bcc181

Please sign in to comment.