Welcome to mirror list, hosted at ThFree Co, Russian Federation.

build.cmd « fsharpbinding « external « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ee316b07f6cdc61b01352bd1a1fe45f342ae6226 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@echo off
SETLOCAL

cls

.paket\paket.bootstrapper.exe
if errorlevel 1 (
  exit /b %errorlevel%
)

.paket\paket.exe restore
if errorlevel 1 (
  exit /b %errorlevel%
)

SET TARGET=Default

IF NOT [%1]==[] (SET TARGET=%~1)

"packages\FAKE\tools\Fake.exe" "build.fsx" "target="%TARGET%""