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

build.libgit2sharp.cmd - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6cd7d72cf56a38ef0124c7aba23bdc9dd5b58478 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
@ECHO OFF

REM Sample usages:
REM
REM  Building and running tests
REM  - build.libgit2sharp.cmd
REM
REM  Building, running tests and embedding the libgit2sharp commit sha
REM  - build.libgit2sharp.cmd "6a6eb81272876fd63555165beef44de2aaa78a14"
REM
REM  Building and identifying potential leaks while running tests
REM  - build.libgit2sharp.cmd "unknown" "LEAKS_IDENTIFYING"


SETLOCAL

SET BASEDIR=%~dp0
SET FrameworkVersion=v4.0.30319
SET FrameworkDir=%SystemRoot%\Microsoft.NET\Framework

if exist "%SystemRoot%\Microsoft.NET\Framework64" (
  SET FrameworkDir=%SystemRoot%\Microsoft.NET\Framework64
)

ECHO ON

SET CommitSha=%~1
SET ExtraDefine=%~2

"%BASEDIR%Lib/NuGet/NuGet.exe" restore "%BASEDIR%LibGit2Sharp.sln"
"%FrameworkDir%\%FrameworkVersion%\msbuild.exe" "%BASEDIR%CI\build.msbuild" /property:CommitSha=%CommitSha% /property:ExtraDefine="%ExtraDefine%"

ENDLOCAL

EXIT /B %ERRORLEVEL%