forked from libgit2/libgit2sharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve tracking toolset of improperly released unmanaged handles
- Loading branch information
Showing
10 changed files
with
157 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<!-- Add extra defines to DefineConstants. --> | ||
<PropertyGroup> | ||
<DefineConstants Condition=" '$(ExtraDefine)' != '' ">$(DefineConstants);$(ExtraDefine)</DefineConstants> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,34 @@ | ||
@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 | ||
|
||
"%FrameworkDir%\%FrameworkVersion%\msbuild.exe" "%BASEDIR%CI\build.msbuild" /property:CommitSha=%CommitSha% | ||
"%FrameworkDir%\%FrameworkVersion%\msbuild.exe" "%BASEDIR%CI\build.msbuild" /property:CommitSha=%CommitSha% /property:ExtraDefine="%ExtraDefine%" | ||
|
||
ENDLOCAL | ||
|
||
EXIT /B %ERRORLEVEL% | ||
EXIT /B %ERRORLEVEL% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.