mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-22 09:55:33 +00:00
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>
29 lines
573 B
Batchfile
29 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%
|