Update CustomTheme.vstheme #14
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build VS2022 Extension | |
on: | |
push: | |
branches: | |
- New-ui-support | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: Setup MSBuild | |
uses: microsoft/[email protected] | |
with: | |
vs-prerelease: true | |
- name: Restore NuGet packages | |
run: nuget restore VisualAssistDarkTheme.csproj | |
- name: Build solution | |
run: msbuild VisualAssistDarkTheme.csproj /p:Configuration=Release | |
- name: Upload Artifact | |
uses: actions/[email protected] | |
with: | |
name: VisualAssistDarkTheme | |
path: ./bin/Release/VisualAssistDarkTheme.vsix |