setup-dotnet/action.yml

14 lines
605 B
YAML
Raw Normal View History

2019-11-11 23:49:23 +07:00
name: 'Setup .NET Core SDK'
2022-08-14 09:00:27 +07:00
description: 'Set up a specific version of the .NET Core SDK and add the command-line tools to the PATH'
author: 'GitHub'
inputs:
dotnet-version:
description: 'SDK version to use. Example: 2.2.104'
# 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'
deprecationMessage: 'The version property will not be supported after October 1, 2019. Use dotnet-version instead'
2019-06-20 03:22:22 +07:00
runs:
2022-08-14 09:00:27 +07:00
using: 'node12'
main: 'lib/setup-dotnet.js'