diff --git a/README.md b/README.md index cbd7f07..b598f98 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ You know how handy that 'Visual Studio Developer Command Prompt' is on your loca ```yml - name: Add msbuild to PATH - uses: microsoft/setup-msbuild@v1.0.3 + uses: microsoft/setup-msbuild@v1.1 ``` ## Specifying specific versions of Visual Studio @@ -15,7 +15,7 @@ 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.3 + uses: microsoft/setup-msbuild@v1.1 with: vs-version: '[16.4,16.5)' ``` @@ -27,7 +27,7 @@ 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.3 + uses: microsoft/setup-msbuild@v1.1 with: vswhere-path: 'C:\path\to\your\tools\' ``` diff --git a/building-release.md b/building-release.md index 7ea641f..1a1f44e 100644 --- a/building-release.md +++ b/building-release.md @@ -7,7 +7,7 @@ This is a quick document to walk through the process of building and releasing. - Build the branch/package - `npm install` - `npm run build` - - `npm run package` + - `npm run pack` - Prune the dependencies to only production - `npm prune --production` - Uncomment `node_modules` in `.gitignore` **for this branch only**