af6c86ad19
* Fix: Implement custom procfs watcher for connect / disconnect events * fix encoding on build files * Update travis CI * Use last supported framework on CI Co-authored-by: Christopher Lees <leezer3@gmail.com>
28 lines
573 B
Batchfile
28 lines
573 B
Batchfile
@echo off
|
|
cls
|
|
|
|
.paket\paket.bootstrapper.exe
|
|
if errorlevel 1 (
|
|
exit /b %errorlevel%
|
|
)
|
|
|
|
.paket\paket.exe restore
|
|
if errorlevel 1 (
|
|
exit /b %errorlevel%
|
|
)
|
|
|
|
IF NOT EXIST build.fsx (
|
|
.paket\paket.exe update
|
|
packages\FAKE\tools\FAKE.exe init.fsx
|
|
)
|
|
|
|
SET BuildTarget=
|
|
if "%BuildRunner%" == "MyGet" (
|
|
SET BuildTarget=NuGet
|
|
|
|
:: Replace the existing release notes file with one for this build only
|
|
echo ### %PackageVersion% > RELEASE_NOTES.md
|
|
echo * git build >> RELEASE_NOTES.md
|
|
)
|
|
|
|
packages\FAKE\tools\FAKE.exe build.fsx %* %BuildTarget%
|