Skip to content

Commit d002a2d

Browse files
committed
Add AppVeyor environment vars to speed up CI builds
This change adds a couple of environment variables to speed up AppVeyor CI builds: - DOTNET_SKIP_FIRST_TIME_EXPERIENCE=true: Don't download unneeded packages - DOTNET_CLI_TELEMETRY_OPTOUT=true: Don't send telemetry This information was gained from this blog post: http://rehansaeed.com/cross-platform-devops-net-core/
1 parent 5ae546d commit d002a2d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

appveyor.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ branches:
88
- master
99
- develop
1010

11+
environment:
12+
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true # Don't download unneeded packages
13+
DOTNET_CLI_TELEMETRY_OPTOUT: true # Don't send telemetry
14+
1115
install:
1216
- ps: |
1317
Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force | Out-Null

0 commit comments

Comments
 (0)