Skip to content

Commit 3ac564e

Browse files
committed
Implement #109 adding action types file
1 parent d3ea839 commit 3ac564e

2 files changed

Lines changed: 19 additions & 1 deletion

File tree

action-types.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# See https://github.com/krzema12/github-actions-typing
2+
inputs:
3+
vswhere-path:
4+
type: string
5+
vs-version:
6+
type: string
7+
vs-prerelease:
8+
type: boolean
9+
msbuild-architecture:
10+
type: enum
11+
name: Architecture
12+
allowed-values:
13+
- x86
14+
- x64
15+
- arm64
16+
outputs:
17+
msbuildPath:
18+
type: string

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ inputs:
1515
description: 'Enable searching for pre-release versions of Visual Studio/MSBuild'
1616
required: false
1717
msbuild-architecture:
18-
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.'
18+
description: 'The preferred processor architecture of MSBuild. Can be either "x86", "x64", or "arm64". "x64" is only available from Visual Studio version 17.0 and later.'
1919
required: false
2020
default: 'x86'
2121
outputs:

0 commit comments

Comments
 (0)