Find any product with MSBuild component

Fixes #7
This commit is contained in:
Heath Stewart
2020-04-04 11:00:48 -07:00
parent f05df80b32
commit bb70c6a023
5 changed files with 9 additions and 10 deletions

View File

@@ -5,7 +5,7 @@ You know how handy that 'Visual Studio Developer Command Prompt' is on your loca
```
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.0.0
uses: microsoft/setup-msbuild@v1.0.1
```
## Specifying specific versions of Visual Studio
@@ -13,7 +13,7 @@ You may have a situation where your Actions runner has multiple versions of Visu
```
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.0.0
uses: microsoft/setup-msbuild@v1.0.1
with:
vs-version: [16.4,16.5]
```
@@ -23,7 +23,7 @@ This makes use of the vswhere tool which is a tool is delivered by Microsoft to
```
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.0.0
uses: microsoft/setup-msbuild@v1.0.1
with:
vswhere-path: 'C:\path\to\your\tools\'
```