Skip to content

Commit c2d93af

Browse files
committed
Reword commentsAdd DOTNET_NOLOGO: true
1 parent 5c1b53a commit c2d93af

File tree

3 files changed

+15
-9
lines changed

3 files changed

+15
-9
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,13 @@ on:
88
- published
99

1010
env:
11-
# Set the DOTNET_SKIP_FIRST_TIME_EXPERIENCE environment variable to stop wasting time caching packages
11+
# Disable the .NET logo in the console output.
12+
DOTNET_NOLOGO: true
13+
# Disable the .NET first time experience to skip caching NuGet packages and speed up the build.
1214
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
13-
# Disable sending usage data to Microsoft
15+
# Disable sending .NET CLI telemetry to Microsoft.
1416
DOTNET_CLI_TELEMETRY_OPTOUT: true
15-
# Set the build number in MinVer
17+
# Set the build number in MinVer.
1618
MINVERBUILDMETADATA: build.${{github.run_number}}
1719

1820
jobs:

appveyor.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,13 @@ pull_requests:
1212
do_not_increment_build_number: true
1313

1414
environment:
15-
# Set the DOTNET_SKIP_FIRST_TIME_EXPERIENCE environment variable to stop wasting time caching packages
15+
# Disable the .NET logo in the console output.
16+
DOTNET_NOLOGO: true
17+
# Disable the .NET first time experience to skip caching NuGet packages and speed up the build.
1618
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
17-
# Disable sending usage data to Microsoft
19+
# Disable sending .NET CLI telemetry to Microsoft.
1820
DOTNET_CLI_TELEMETRY_OPTOUT: true
19-
# Set the build number in MinVer
21+
# Set the build number in MinVer.
2022
MINVERBUILDMETADATA: build.%APPVEYOR_BUILD_NUMBER%
2123

2224
build_script:

azure-pipelines.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,13 @@ trigger:
99
- '*'
1010

1111
variables:
12-
# Set the DOTNET_SKIP_FIRST_TIME_EXPERIENCE environment variable to stop wasting time caching packages
12+
# Disable the .NET logo in the console output.
13+
DOTNET_NOLOGO: true
14+
# Disable the .NET first time experience to skip caching NuGet packages and speed up the build.
1315
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
14-
# Disable sending usage data to Microsoft
16+
# Disable sending .NET CLI telemetry to Microsoft.
1517
DOTNET_CLI_TELEMETRY_OPTOUT: true
16-
# Set the build number in MinVer
18+
# Set the build number in MinVer.
1719
MINVERBUILDMETADATA: build.$(Build.BuildId)
1820

1921
stages:

0 commit comments

Comments
 (0)