setup-dotnet/action.yml

14 lines
597 B
YAML
Raw Normal View History

2019-11-12 00:49:23 +08:00
name: 'Setup .NET Core SDK'
description: 'Set up a specific version of the .NET Core SDK and add the command-line tools to the PATH'
2019-06-20 04:22:22 +08:00
author: 'GitHub'
inputs:
2019-08-14 04:05:52 +08:00
dotnet-version:
2019-11-12 00:49:23 +08:00
description: 'SDK version to use. Example: 2.2.104'
2019-08-14 04:05:52 +08:00
# Deprecated option, do not use. Will not be supported after October 1, 2019
version:
description: 'Deprecated. Use dotnet-version instead. Will not be supported after October 1, 2019'
2019-09-12 22:37:27 +08:00
deprecationMessage: 'The version property will not be supported after October 1, 2019. Use dotnet-version instead'
2019-06-20 04:22:22 +08:00
runs:
2019-07-10 00:43:19 +08:00
using: 'node12'
main: 'lib/setup-dotnet.js'