Skip to content

Commit dae25b5

Browse files
authored
Fix GitHub actions (#11)
Update msbuild.yml
1 parent 118a324 commit dae25b5

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

.github/workflows/msbuild.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,19 @@ jobs:
99
runs-on: windows-latest
1010

1111
steps:
12-
12+
- uses: actions/checkout@v2
13+
1314
- name: Add msbuild to PATH
1415
uses: microsoft/[email protected]
16+
with:
17+
vs-version: '[17,18)'
1518

19+
- run: msbuild /t:Restore VSIXInteropFormsToolkit.sln
20+
1621
- name: Build app for release
17-
run: /p:Configuration=Release /p:DeployExtension=false "VSIXInteropFormsToolkit.sln"
22+
run: msbuild /p:Configuration=Release /p:DeployExtension=false VSIXInteropFormsToolkit.sln
23+
24+
- uses: actions/upload-artifact@v2
25+
with:
26+
name: VSIXInteropFormsToolkit.vsix
27+
path: VSIXInteropFormsToolkit\bin\Release\VSIXInteropFormsToolkit.vsix

0 commit comments

Comments
 (0)