Skip to content

Commit

Permalink
Include useful environment variables in the README
Browse files Browse the repository at this point in the history
  • Loading branch information
Zachary Eisinger authored and GitHub committed May 29, 2020
1 parent db2ebd0 commit fe5534d
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,23 @@ steps:
run: dotnet nuget push <my project>/bin/Release/*.nupkg
```
## Environment Variables to use with dotnet
Some environment variables may be necessary for your particular case or to improve logging. Some examples are listed below, but the full list with complete details can be found here: https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet#environment-variables
- DOTNET_NOLOGO - removes logo and telemetry message from first run of dotnet cli (default: false)
- DOTNET_CLI_TELEMETRY_OPTOUT - opt-out of telemetry being sent to Microsoft (default: false)
- DOTNET_MULTILEVEL_LOOKUP - configures whether the global install location is used as a fall-back (default: true)
Example usage:
```
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '3.1.100' # SDK Version to use.
env:
DOTNET_NOLOGO: true
```
# License
The scripts and documentation in this project are released under the [MIT License](LICENSE)
Expand Down

0 comments on commit fe5534d

Please sign in to comment.