File tree Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change 22
33cls
44
5+ echo .
6+ echo SKIP_RESTORE=%SKIP_RESTORE% ^ < ^ < Set to true if have already restored packages
7+ if " %SKIP_RESTORE% " == " " choice /T 5 /D Y /M " Continue?"
8+
9+ if " %SKIP_RESTORE% " == " true" goto :BUILD_NET
510.paket\paket.bootstrapper.exe
611if errorlevel 1 (
712 exit /b %errorlevel%
@@ -12,7 +17,17 @@ if errorlevel 1 (
1217 exit /b %errorlevel%
1318)
1419
20+ :BUILD_NET
21+ echo .
22+ echo Fake build.fsx
1523.\packages\FAKE\tools\Fake %*
1624
25+ if " %SKIP_RESTORE% " == " true" goto :BUILD_NETSTD
26+ echo .
27+ echo dotnet restore
1728dotnet restore
18- dotnet build --configuration Release --output build\netstandard1.5 --framework netstandard1.5 src\commandline
29+
30+ :BUILD_NETSTD
31+ echo .
32+ echo dotnet build
33+ dotnet build --configuration Release --output Release\netstandard1.5 --framework netstandard1.5 src\commandline
You can’t perform that action at this time.
0 commit comments