mirror of
https://github.com/actions/setup-dotnet.git
synced 2024-11-22 19:41:08 +07:00
Sdk doc nits
This commit is contained in:
parent
99b3249572
commit
d6004ce18b
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
This action sets up a dotnet environment for use in actions by:
|
This action sets up a dotnet environment for use in actions by:
|
||||||
|
|
||||||
- optionally downloading and caching a version of dotnet by version and adding to PATH
|
- optionally downloading and caching a version of dotnet by SDK version and adding to PATH
|
||||||
- registering problem matchers for error output
|
- registering problem matchers for error output
|
||||||
|
|
||||||
# Usage
|
# Usage
|
||||||
@ -15,7 +15,7 @@ steps:
|
|||||||
- uses: actions/checkout@master
|
- uses: actions/checkout@master
|
||||||
- uses: actions/setup-dotnet@v1
|
- uses: actions/setup-dotnet@v1
|
||||||
with:
|
with:
|
||||||
version: '2.2.103' // Version to use.
|
version: '2.2.103' // SDK Version to use.
|
||||||
- run: dotnet build <my project>
|
- run: dotnet build <my project>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@ description: 'Setup a Dotnet environment and add it to the PATH, additionally pr
|
|||||||
author: 'GitHub'
|
author: 'GitHub'
|
||||||
inputs:
|
inputs:
|
||||||
version:
|
version:
|
||||||
description: 'Version to use. E.g. 2.2.104'
|
description: 'SDK version to use. E.g. 2.2.104'
|
||||||
runs:
|
runs:
|
||||||
using: 'node12'
|
using: 'node12'
|
||||||
main: 'lib/setup-dotnet.js'
|
main: 'lib/setup-dotnet.js'
|
||||||
|
Loading…
Reference in New Issue
Block a user