From 0b5643901b0999aee1e981a4ae1c8bbf7e90484d Mon Sep 17 00:00:00 2001 From: Lance McCarthy Date: Tue, 1 Sep 2020 16:38:21 -0400 Subject: [PATCH] Update README.md Fixed incorrect indentation of `with` in examples --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b9c06ed..f846485 100644 --- a/README.md +++ b/README.md @@ -14,8 +14,8 @@ You may have a situation where your Actions runner has multiple versions of Visu ```yml - name: Add msbuild to PATH uses: microsoft/setup-msbuild@v1.0.1 - with: - vs-version: '[16.4,16.5)' + with: + vs-version: '[16.4,16.5)' ``` The syntax is the same used for Visual Studio extensions, where square brackets like "[" mean inclusive, and parenthesis like "(" mean exclusive. A comma is always required, but eliding the minimum version looks for all older versions and eliding the maximum version looks for all newer versions. See the [vswhere wiki](https://github.com/microsoft/vswhere/wiki) for more details. @@ -26,8 +26,8 @@ This makes use of the vswhere tool which is a tool delivered by Microsoft to hel ```yml - name: Add msbuild to PATH uses: microsoft/setup-msbuild@v1.0.1 - with: - vswhere-path: 'C:\path\to\your\tools\' + with: + vswhere-path: 'C:\path\to\your\tools\' ``` ## Notes on arguments