Skip to content

Set up your GitHub Actions workflow to add MSBuild.exe into the PATH

License

Notifications You must be signed in to change notification settings

SariusRu/Setup-MSTest

 
 

Repository files navigation

setup-MSBuild

This action sets up MSBuild.exe as a CLI tool for use in actions by:

  • optionally downloading and caching a version of VSWhere.exe to help find the latest MSBuild on the machine
  • Adds the location of the MSBuild to the PATH

Usage

Basic:

steps:
name: ASP.NET CI
on: [push]
jobs:
  build:
    runs-on: windows-latest

    steps:
    - uses: actions/checkout@master

    - name: Setup MSBuild.exe
      uses: warrenbuckley/Setup-MSBuild@v1

    - name: MSBuild
      working-directory: src
      run: msbuild MyProject.csproj

License

The scripts and documentation in this project are released under the MIT License

Contributions

Contributions are welcome! See Contributor's Guide

About

Set up your GitHub Actions workflow to add MSBuild.exe into the PATH

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 89.9%
  • TypeScript 10.1%