setup-dotnet/action.yml

14 lines
596 B
YAML
Raw Normal View History

2019-08-12 18:40:04 +00:00
name: 'Setup Dotnet environment'
2019-06-19 20:22:22 +00:00
description: 'Setup a Dotnet environment and add it to the PATH, additionally providing proxy support'
author: 'GitHub'
inputs:
2019-08-13 20:05:52 +00:00
dotnet-version:
2019-08-01 20:40:13 +00:00
description: 'SDK version to use. E.g. 2.2.104'
2019-08-13 20:05:52 +00: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 14:37:27 +00:00
deprecationMessage: 'The version property will not be supported after October 1, 2019. Use dotnet-version instead'
2019-06-19 20:22:22 +00:00
runs:
2019-07-09 16:43:19 +00:00
using: 'node12'
main: 'lib/setup-dotnet.js'