A GitHub Action to facilitate configuring MSBuild in the workflow PATH for building .NET Framework applications.
Go to file
dependabot[bot] 341cfb53e3
Bump @actions/http-client from 1.0.2 to 1.0.8
Bumps [@actions/http-client](https://github.com/actions/http-client) from 1.0.2 to 1.0.8.
- [Release notes](https://github.com/actions/http-client/releases)
- [Changelog](https://github.com/actions/http-client/blob/master/RELEASES.md)
- [Commits](https://github.com/actions/http-client/commits)

Signed-off-by: dependabot[bot] <support@github.com>
2020-04-29 18:02:20 +00:00
.github/workflows Adding remark about arguments in readme 2020-03-26 08:42:27 -07:00
dist Final v1 logic changes 2020-02-20 16:56:19 -08:00
src Final v1 logic changes 2020-02-20 16:56:19 -08:00
.eslintignore Initial developer commit 2020-01-31 11:14:06 -08:00
.eslintrc.json Initial developer commit 2020-01-31 11:14:06 -08:00
.gitignore Removing node_modules 2020-01-31 11:42:34 -08:00
.prettierignore Initial developer commit 2020-01-31 11:14:06 -08:00
.prettierrc.json Initial developer commit 2020-01-31 11:14:06 -08:00
action.yml Initial developer commit 2020-01-31 11:14:06 -08:00
CODE_OF_CONDUCT.md Initial CODE_OF_CONDUCT.md commit 2020-01-30 20:41:51 -08:00
jest.config.js Initial developer commit 2020-01-31 11:14:06 -08:00
LICENSE Updating LICENSE to template content 2020-01-30 20:41:52 -08:00
package-lock.json Bump @actions/http-client from 1.0.2 to 1.0.8 2020-04-29 18:02:20 +00:00
package.json Initial developer commit 2020-01-31 11:14:06 -08:00
README.md Adding remark about arguments in readme 2020-03-26 08:42:27 -07:00
SECURITY.md Initial SECURITY.md commit 2020-01-30 20:41:55 -08:00
tsconfig.json Initial developer commit 2020-01-31 11:14:06 -08:00

microsoft/setup-msbuild

You know how handy that 'Visual Studio Developer Command Prompt' is on your local machine? And how it adds several things to PATH to allow you to just issue commands like msbuild or otherwise? Use this action to setup similar flexibility in your Windows-based GitHub Actions runners. This will let you discover where those tool paths are and automatically add them to the PATH environment variables for you so future steps in your Actions workflow can just initiate commands without knowing the full path.

Usage

- name: Add msbuild to PATH
  uses: microsoft/setup-msbuild@v1.0.0

Specifying specific versions of Visual Studio

You may have a situation where your Actions runner has multiple versions of Visual Studio and you need to find a specific version of the tool. Simply add the vs-version input to specify the range of versions to find. If looking for a specific version, enter that version number twice as a range.

- name: Add msbuild to PATH
  uses: microsoft/setup-msbuild@v1.0.0
    with:
      vs-version: [16.4,16.5]

How does this work?

This makes use of the vswhere tool which is a tool is delivered by Microsoft to help in identifying Visual Studio installs and various components. This tool is installed on the hosted Windows runners for GitHub Actions. If you are using a self-hosted runner, you either need to make sure vswhere.exe is in your agent's PATH or specify a full path to the location using:

- name: Add msbuild to PATH
  uses: microsoft/setup-msbuild@v1.0.0
    with:
      vswhere-path: 'C:\path\to\your\tools\'

Notes on arguments

While the Action enables you to specify a vswhere path as well as a vs-version, these are more advanced options and when using GitHub-hosted runners you should not need these and is recommended you don't specify them. Using these require you to fully understand the runner environment, updates to the tools on the runner, and can cause failures if you are out of sync. For GitHub-hosted runners, omitting these arguments is the preferred usage.

Building this repo

As with most GitHub Actions, this requires NodeJS development tools. After installing NodeJS, you can build this by executing:

npm install
npm run build
npm run pack

which will modify/create the /dist folder with the final index.js output

Credits

Thank you to Warren Buckley for being a core contributor to this Action for the benefit of all developers!

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.