8000 Check https://github.com/libgit2/libgit2/pull/2798 · GiTechLab/libgit2sharp@21462a9 · GitHub
[go: up one dir, main page]

Skip to content

Commit 21462a9

Browse files
committed
1 parent 605b623 commit 21462a9

File tree

10 files changed

+10
-19
lines changed

10 files changed

+10
-19
lines changed
1000 KB
Binary file not shown.
-981 KB
Binary file not shown.
752 KB
Binary file not shown.
-745 KB
Binary file not shown.

LibGit2Sharp.Tests/BlobFixture.cs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ public void CanGetBlobAsText()
2929
[InlineData("true", "hey there\r\n")]
3030
public void CanGetBlobAsFilteredText(string autocrlf, string expectedText)
3131
{
32-
SkipIfNotSupported(autocrlf);
33-
3432
var path = SandboxBareTestRepo();
3533
using (var repo = new Repository(path))
3634
{
@@ -131,8 +129,6 @@ public void CanReadBlobStream()
131129
[InlineData("true", "hey there\r\n")]
132130
public void CanReadBlobFilteredStream(string autocrlf, string expectedContent)
133131
{
134-
SkipIfNotSupported(autocrlf);
135-
136132
var path = SandboxBareTestRepo();
137133
using (var repo = new Repository(path))
138134
{
@@ -219,10 +215,5 @@ public void CanTellIfTheBlobContentLooksLikeBinary()
219215
Assert.Equal(false, blob.IsBinary);
220216
}
221217
}
222-
223-
private static void SkipIfNotSupported(string autocrlf)
224-
{
225-
InconclusiveIf(() => autocrlf == "true" && IsRunningOnLinux(), "Non-Windows does not support core.autocrlf = true");
226-
}
227218
}
228219
}

LibGit2Sharp/Core/NativeDllName.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ namespace LibGit2Sharp.Core
22
{
33
internal static class NativeDllName
44
{
5-
public const string Name = "git2-e0902fb";
5+
public const string Name = "git2-b55aae0";
66
}
77
}

LibGit2Sharp/libgit2_hash.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
e0902fbce7d14631bd02091c1c70cde3e68f78ab
1+
b55aae079b018f8e4ab8f06690135acd963832e2

nuget.package/build/LibGit2Sharp.props

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<ItemGroup>
4-
<None Include="$(MSBuildThisFileDirectory)\..\..\lib\net40\NativeBinaries\amd64\git2-e0902fb.dll">
5-
<Link>NativeBinaries\amd64\git2-e0902fb.dll</Link>
4+
<None Include="$(MSBuildThisFileDirectory)\..\..\lib\net40\NativeBinaries\amd64\git2-b55aae0.dll">
5+
<Link>NativeBinaries\amd64\git2-b55aae0.dll</Link>
66
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
77
</None>
8-
<None Include="$(MSBuildThisFileDirectory)\..\..\lib\net40\NativeBinaries\amd64\git2-e0902fb.pdb">
9-
<Link>NativeBinaries\amd64\git2-e0902fb.pdb</Link>
8+
<None Include="$(MSBuildThisFileDirectory)\..\..\lib\net40\NativeBinaries\amd64\git2-b55aae0.pdb">
9+
<Link>NativeBinaries\amd64\git2-b55aae0.pdb</Link>
1010
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
1111
</None>
12-
<None Include="$(MSBuildThisFileDirectory)\..\..\lib\net40\NativeBinaries\x86\git2-e0902fb.dll">
13-
<Link>NativeBinaries\x86\git2-e0902fb.dll</Link>
12+
<None Include="$(MSBuildThisFileDirectory)\..\..\lib\net40\NativeBinaries\x86\git2-b55aae0.dll">
13+
<Link>NativeBinaries\x86\git2-b55aae0.dll</Link>
1414
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
1515
</None>
16-
<None Include="$(MSBuildThisFileDirectory)\..\..\lib\net40\NativeBinaries\x86\git2-e0902fb.pdb">
17-
<Link>NativeBinaries\x86\git2-e0902fb.pdb</Link>
16+
<None Include="$(MSBuildThisFileDirectory)\..\..\lib\net40\NativeBinaries\x86\git2-b55aae0.pdb">
17+
<Link>NativeBinaries\x86\git2-b55aae0.pdb</Link>
1818
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
1919
</None>
2020
</ItemGroup>

0 commit comments

Comments
 (0)
0