~vince/poc_libgit2sharp

b10eb21f98dcffe40dcfcd792933a795bbcff3dd — Scherb Vincent 2 years ago e8f4902
Update LibGit2Sharp version to preview

In the issues for the library is indicated that there are problems with
.Net 5 with those problems solved in the preview version of the NuGet.

With this fix the program runs without an error.

Signed-off-by: Scherb Vincent <scherb.vincent@gmail.com>
1 files changed, 13 insertions(+), 13 deletions(-)

M poc_libgit2sharp/poc_libgit2sharp.csproj
M poc_libgit2sharp/poc_libgit2sharp.csproj => poc_libgit2sharp/poc_libgit2sharp.csproj +13 -13
@@ 1,14 1,14 @@
<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <OutputType>Exe</OutputType>
    <TargetFramework>net6.0</TargetFramework>
    <ImplicitUsings>enable</ImplicitUsings>
    <Nullable>enable</Nullable>
  </PropertyGroup>

<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <OutputType>Exe</OutputType>
    <TargetFramework>net6.0</TargetFramework>
    <ImplicitUsings>enable</ImplicitUsings>
    <Nullable>enable</Nullable>
  </PropertyGroup>

  <ItemGroup>
    <PackageReference Include="LibGit2Sharp" Version="0.26.2" />
  </ItemGroup>

</Project>
    <PackageReference Include="LibGit2Sharp" Version="0.27.0-preview-0182" />
  </ItemGroup>

</Project>