8000 Add support for net5.0-windows · UiPath/libgit2sharp@a7e0e88 · GitHub
[go: up one dir, main page]

Skip to content

Commit a7e0e88

Browse files
committed
Add support for net5.0-windows
This also requires updating the native binaries package.
1 parent 3cc8a8b commit a7e0e88

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

LibGit2Sharp.Tests/LibGit2Sharp.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net46;netcoreapp2.0</TargetFrameworks>
4+
<TargetFramework>net5.0-windows</TargetFramework>
55
</PropertyGroup>
66

77
<ItemGroup>

LibGit2Sharp/LibGit2Sharp.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;net46</TargetFrameworks>
4+
<TargetFrameworks>net461;net5.0-windows</TargetFrameworks>
55
<GenerateDocumentationFile>true</GenerateDocumentationFile>
66
<Description>LibGit2Sharp brings all the might and speed of libgit2, a native Git implementation, to the managed world of .Net and Mono.</Description>
77
<Company>LibGit2Sharp contributors</Company>
@@ -30,7 +30,7 @@
3030
</ItemGroup>
3131

3232
<ItemGroup>
33-
<PackageReference Include="LibGit2Sharp.NativeBinaries.UiPath" Version="0.28.8" PrivateAssets="none" />
33+
<PackageReference Include="LibGit2Sharp.NativeBinaries.UiPath" Version="0.28.9" PrivateAssets="none"/>
3434
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta-63127-02" PrivateAssets="all" />
3535
<PackageReference Include="Nerdbank.GitVersioning" Version="2.2.13" PrivateAssets="all" />
3636
</ItemGroup>

NativeLibraryLoadTestApp/x64/NativeLibraryLoadTestApp.x64.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net46</TargetFramework>
5+
<TargetFramework>net461</TargetFramework>
66
<PlatformTarget>x64</PlatformTarget>
77
</PropertyGroup>
88

NativeLibraryLoadTestApp/x86/NativeLibraryLoadTestApp.x86.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net46</TargetFramework>
5+
<TargetFramework>net461</TargetFramework>
66
<PlatformTarget>x86</PlatformTarget>
77
</PropertyGroup>
88

Targets/GenerateNativeDllName.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<NativeDllNameSourceLines>
1616
namespace LibGit2Sharp.Core
1717
{
18-
internal static class NativeDllName
18+
public static class NativeDllName
1919
{
2020
public const string Name = "$(libgit2_filename)"%3b
2121
}

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/AArnott/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
3-
"version": "0.26.8",
3+
"version": "0.26.9",
44
"publicReleaseRefSpec": [
55
"^refs/heads/release/v\\d+\\.\\d+\\.\\d+"
66
],

0 commit comments

Comments
 (0)
0