Skip to content

Commit

Permalink
set DOTNET_SKIP_FIRST_TIME_EXPERIENCE, may speed up build
Browse files Browse the repository at this point in the history
  • Loading branch information
0x53A committed Aug 4, 2017
1 parent 77f6b84 commit 271a28f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions build.cmd
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
@echo off

rem https://github.com/dotnet/cli/issues/6317#issuecomment-294193469
set DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1

.paket\paket.exe restore
if errorlevel 1 (
exit /b %errorlevel%
Expand Down
4 changes: 4 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
#!/usr/bin/env bash

# https://github.com/dotnet/cli/issues/6317#issuecomment-294193469
export DOTNET_SKIP_FIRST_TIME_EXPERIENCE="1"

if test "$OS" = "Windows_NT"
then
# use .Net
Expand Down

0 comments on commit 271a28f

Please sign in to comment.