File tree Expand file tree Collapse file tree 3 files changed +15
-9
lines changed
Expand file tree Collapse file tree 3 files changed +15
-9
lines changed Original file line number Diff line number Diff line change 88 - published
99
1010env :
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
1820jobs :
Original file line number Diff line number Diff line change @@ -12,11 +12,13 @@ pull_requests:
1212 do_not_increment_build_number : true
1313
1414environment :
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
2224build_script :
Original file line number Diff line number Diff line change @@ -9,11 +9,13 @@ trigger:
99 - ' *'
1010
1111variables :
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
1921stages :
You can’t perform that action at this time.
0 commit comments