setup-msbuild/action.yml

28 lines
900 B
YAML
Raw Permalink Normal View History

2020-02-01 02:14:06 +07:00
name: 'setup-msbuild'
description: 'Helps set up MSBuild into PATH for later usage.'
author: 'Microsoft'
branding:
color: purple
icon: terminal
inputs:
vswhere-path:
required: false
description: 'Folder location of where vswhere.exe is located if a self-hosted agent'
vs-version:
description: 'Version of Visual Studio to search; defaults to latest if not specified'
required: false
2021-08-25 02:54:44 +07:00
vs-prerelease:
description: 'Enable searching for pre-release versions of Visual Studio/MSBuild'
required: false
2021-11-02 04:34:09 +07:00
msbuild-architecture:
2021-11-02 10:01:10 +07:00
description: 'The preferred processor architecture of MSBuild. Can be either "x86" or "x64". "x64" is only available from Visual Studio version 17.0 and later.'
2021-11-02 04:34:09 +07:00
required: false
default: 'x86'
2020-02-01 02:14:06 +07:00
outputs:
msbuildPath:
description: 'The resulting location of msbuild for your inputs'
runs:
2022-10-12 03:57:27 +07:00
using: 'node16'
2020-02-01 02:14:06 +07:00
main: 'dist/index.js'