We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 118a324 commit dae25b5Copy full SHA for dae25b5
.github/workflows/msbuild.yml
@@ -9,9 +9,19 @@ jobs:
9
runs-on: windows-latest
10
11
steps:
12
-
+ - uses: actions/checkout@v2
13
+
14
- name: Add msbuild to PATH
15
uses: microsoft/[email protected]
16
+ with:
17
+ vs-version: '[17,18)'
18
19
+ - run: msbuild /t:Restore VSIXInteropFormsToolkit.sln
20
21
- name: Build app for release
- 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
26
+ name: VSIXInteropFormsToolkit.vsix
27
+ path: VSIXInteropFormsToolkit\bin\Release\VSIXInteropFormsToolkit.vsix
0 commit comments