Skip to content

Commit 3fc8315

Browse files
karstenasbjornu
authored andcommitted
Upgrade LibGit2Sharp to 0.22.0-pre20150716071016
Fix for mono on amd64 and hopefully also osx (not tested).
1 parent 21baea1 commit 3fc8315

File tree

14 files changed

+120
-46
lines changed

14 files changed

+120
-46
lines changed

src/GitVersionCore.Tests/GitVersionCore.Tests.csproj

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="..\packages\LibGit2Sharp.0.21.0.176\build\net40\LibGit2Sharp.props" Condition="Exists('..\packages\LibGit2Sharp.0.21.0.176\build\net40\LibGit2Sharp.props')" />
3+
<Import Project="..\packages\LibGit2Sharp.NativeBinaries.1.0.72\build\LibGit2Sharp.NativeBinaries.props" Condition="Exists('..\packages\LibGit2Sharp.NativeBinaries.1.0.72\build\LibGit2Sharp.NativeBinaries.props')" />
44
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
55
<PropertyGroup>
66
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -14,7 +14,8 @@
1414
<LangVersion>5</LangVersion>
1515
<FileAlignment>512</FileAlignment>
1616
<TargetFrameworkProfile />
17-
<NuGetPackageImportStamp>4aaf7de2</NuGetPackageImportStamp>
17+
<NuGetPackageImportStamp>
18+
</NuGetPackageImportStamp>
1819
</PropertyGroup>
1920
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2021
<DebugSymbols>true</DebugSymbols>
@@ -41,8 +42,8 @@
4142
<HintPath>..\packages\FluentDateTime.1.12.0\Lib\NET35\FluentDateTime.dll</HintPath>
4243
<Private>True</Private>
4344
</Reference>
44-
<Reference Include="LibGit2Sharp, Version=0.21.0.176, Culture=neutral, processorArchitecture=MSIL">
45-
<HintPath>..\packages\LibGit2Sharp.0.21.0.176\lib\net40\LibGit2Sharp.dll</HintPath>
45+
<Reference Include="LibGit2Sharp, Version=0.22.0.0, Culture=neutral, processorArchitecture=MSIL">
46+
<HintPath>..\packages\LibGit2Sharp.0.22.0-pre20150716071016\lib\net40\LibGit2Sharp.dll</HintPath>
4647
<Private>True</Private>
4748
</Reference>
4849
<Reference Include="NSubstitute, Version=1.9.2.0, Culture=neutral, PublicKeyToken=92dd2e9066daa5ca, processorArchitecture=MSIL">
@@ -192,8 +193,8 @@
192193
<PropertyGroup>
193194
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
194195
</PropertyGroup>
195-
<Error Condition="!Exists('..\packages\LibGit2Sharp.0.21.0.176\build\net40\LibGit2Sharp.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\LibGit2Sharp.0.21.0.176\build\net40\LibGit2Sharp.props'))" />
196196
<Error Condition="!Exists('..\packages\Fody.1.29.3\build\portable-net+sl+win+wpa+wp\Fody.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Fody.1.29.3\build\portable-net+sl+win+wpa+wp\Fody.targets'))" />
197+
<Error Condition="!Exists('..\packages\LibGit2Sharp.NativeBinaries.1.0.72\build\LibGit2Sharp.NativeBinaries.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\LibGit2Sharp.NativeBinaries.1.0.72\build\LibGit2Sharp.NativeBinaries.props'))" />
197198
</Target>
198199
<Import Project="..\packages\Fody.1.29.3\build\portable-net+sl+win+wpa+wp\Fody.targets" Condition="Exists('..\packages\Fody.1.29.3\build\portable-net+sl+win+wpa+wp\Fody.targets')" />
199200
</Project>

src/GitVersionCore.Tests/Mocks/MockQueryableCommitLog.cs

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,19 @@ public ICommitLog QueryBy(CommitFilter filter)
3232
return this;
3333
}
3434

35+
36+
public IEnumerable<LogEntry> QueryBy(string path)
37+
{
38+
throw new NotImplementedException();
39+
}
40+
41+
42+
public IEnumerable<LogEntry> QueryBy(string path, FollowFilter filter)
43+
{
44+
throw new NotImplementedException();
45+
}
46+
47+
3548
public Commit FindMergeBase(Commit first, Commit second)
3649
{
3750
return null;

src/GitVersionCore.Tests/Mocks/MockRepository.cs

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,37 @@ public Branch Checkout(Commit commit, CheckoutOptions options, Signature signatu
3232
throw new NotImplementedException();
3333
}
3434

35+
36+
public Branch Checkout(Branch branch, CheckoutOptions options)
37+
{
38+
throw new NotImplementedException();
39+
}
40+
41+
42+
public Branch Checkout(string committishOrBranchSpec, CheckoutOptions options)
43+
{
44+
throw new NotImplementedException();
45+
}
46+
47+
48+
public Branch Checkout(Commit commit, CheckoutOptions options)
49+
{
50+
throw new NotImplementedException();
51+
}
52+
53+
3554
public void CheckoutPaths(string committishOrBranchSpec, IEnumerable<string> paths, CheckoutOptions checkoutOptions = null)
3655
{
3756
throw new NotImplementedException();
3857
}
3958

59+
60+
public MergeResult MergeFetchedRefs(Signature merger, MergeOptions options)
61+
{
62+
throw new NotImplementedException();
63+
}
64+
65+
4066
public CherryPickResult CherryPick(Commit commit, Signature committer, CherryPickOptions options = null)
4167
{
4268
throw new NotImplementedException();
@@ -67,6 +93,13 @@ public Commit Commit(string message, Signature author, Signature committer, Comm
6793
throw new NotImplementedException();
6894
}
6995

96+
97+
public void Reset(ResetMode resetMode, Commit commit)
98+
{
99+
throw new NotImplementedException();
100+
}
101+
102+
70103
public Dictionary<string, GitObject> LookupResults { get; set; }
71104

72105
public Commit Commit(string message, Signature author, Signature committer, bool amendPreviousCommit = false)
@@ -187,6 +220,7 @@ public IQueryableCommitLog Commits
187220
public ObjectDatabase ObjectDatabase { get; set; }
188221
public NoteCollection Notes { get; set; }
189222
public SubmoduleCollection Submodules { get; set; }
223+
public Rebase Rebase { get; private set; }
190224

191225
public Ignore Ignore
192226
{

src/GitVersionCore.Tests/packages.config

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<package id="FluentDateTime" version="1.12.0" targetFramework="net45" />
44
<package id="Fody" version="1.29.3" targetFramework="net45" developmentDependency="true" />
55
<package id="LibGit2Sharp" version="0.21.0.176" targetFramework="net45" />
6+
<package id="LibGit2Sharp.NativeBinaries" version="1.0.72" targetFramework="net45" />
67
<package id="ModuleInit.Fody" version="1.5.8.0" targetFramework="net45" developmentDependency="true" />
78
<package id="NSubstitute" version="1.9.2.0" targetFramework="net45" />
89
<package id="NUnit" version="2.6.4" targetFramework="net45" />

src/GitVersionCore/GitVersionCore.csproj

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="..\packages\LibGit2Sharp.0.21.0.176\build\net40\LibGit2Sharp.props" Condition="Exists('..\packages\LibGit2Sharp.0.21.0.176\build\net40\LibGit2Sharp.props')" />
3+
<Import Project="..\packages\LibGit2Sharp.NativeBinaries.1.0.72\build\LibGit2Sharp.NativeBinaries.props" Condition="Exists('..\packages\LibGit2Sharp.NativeBinaries.1.0.72\build\LibGit2Sharp.NativeBinaries.props')" />
44
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
55
<PropertyGroup>
66
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -13,7 +13,8 @@
1313
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1414
<LangVersion>5</LangVersion>
1515
<FileAlignment>512</FileAlignment>
16-
<NuGetPackageImportStamp>d8e8d4d0</NuGetPackageImportStamp>
16+
<NuGetPackageImportStamp>
17+
</NuGetPackageImportStamp>
1718
<BuildDir>$(SolutionDir)..\build\</BuildDir>
1819
</PropertyGroup>
1920
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
@@ -41,8 +42,8 @@
4142
<HintPath>..\packages\JetBrainsAnnotations.Fody.1.0.4.0\Lib\JetBrains.Annotations.dll</HintPath>
4243
<Private>False</Private>
4344
</Reference>
44-
<Reference Include="LibGit2Sharp, Version=0.21.0.176, Culture=neutral, processorArchitecture=MSIL">
45-
<HintPath>..\packages\LibGit2Sharp.0.21.0.176\lib\net40\LibGit2Sharp.dll</HintPath>
45+
<Reference Include="LibGit2Sharp, Version=0.22.0.0, Culture=neutral, processorArchitecture=MSIL">
46+
<HintPath>..\packages\LibGit2Sharp.0.22.0-pre20150716071016\lib\net40\LibGit2Sharp.dll</HintPath>
4647
<Private>True</Private>
4748
</Reference>
4849
<Reference Include="System" />
@@ -175,8 +176,8 @@
175176
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
176177
</PropertyGroup>
177178
<Error Condition="!Exists('..\packages\PepitaPackage.1.21.4\build\PepitaPackage.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\PepitaPackage.1.21.4\build\PepitaPackage.targets'))" />
178-
<Error Condition="!Exists('..\packages\LibGit2Sharp.0.21.0.176\build\net40\LibGit2Sharp.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\LibGit2Sharp.0.21.0.176\build\net40\LibGit2Sharp.props'))" />
179179
<Error Condition="!Exists('..\packages\Fody.1.29.3\build\portable-net+sl+win+wpa+wp\Fody.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Fody.1.29.3\build\portable-net+sl+win+wpa+wp\Fody.targets'))" />
180+
<Error Condition="!Exists('..\packages\LibGit2Sharp.NativeBinaries.1.0.72\build\LibGit2Sharp.NativeBinaries.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\LibGit2Sharp.NativeBinaries.1.0.72\build\LibGit2Sharp.NativeBinaries.props'))" />
180181
</Target>
181182
<PropertyGroup>
182183
<PostBuildEvent>

src/GitVersionCore/packages.config

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
<package id="Caseless.Fody" version="1.3.7" targetFramework="net40" developmentDependency="true" />
44
<package id="Fody" version="1.29.3" targetFramework="net40" developmentDependency="true" />
55
<package id="JetBrainsAnnotations.Fody" version="1.0.4.0" targetFramework="net40" developmentDependency="true" />
6-
<package id="LibGit2Sharp" version="0.21.0.176" targetFramework="net40" />
6+
<package id="LibGit2Sharp" version="0.22.0-pre20150716071016" targetFramework="net4" />
7+
<package id="LibGit2Sharp.NativeBinaries" version="1.0.72" targetFramework="net4" />
78
<package id="PepitaPackage" version="1.21.4" targetFramework="net40" developmentDependency="true" />
89
<package id="Visualize.Fody" version="0.4.4.0" targetFramework="net4" developmentDependency="true" />
910
<package id="YamlDotNet" version="3.6.1" targetFramework="net40" />

src/GitVersionExe.Tests/GitVersionExe.Tests.csproj

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="..\packages\LibGit2Sharp.0.21.0.176\build\net40\LibGit2Sharp.props" Condition="Exists('..\packages\LibGit2Sharp.0.21.0.176\build\net40\LibGit2Sharp.props')" />
3+
<Import Project="..\packages\LibGit2Sharp.NativeBinaries.1.0.72\build\LibGit2Sharp.NativeBinaries.props" Condition="Exists('..\packages\LibGit2Sharp.NativeBinaries.1.0.72\build\LibGit2Sharp.NativeBinaries.props')" />
44
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
55
<PropertyGroup>
66
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -14,6 +14,8 @@
1414
<FileAlignment>512</FileAlignment>
1515
<NuGetPackageImportStamp>56739c36</NuGetPackageImportStamp>
1616
<LangVersion>5</LangVersion>
17+
<NuGetPackageImportStamp>
18+
</NuGetPackageImportStamp>
1719
</PropertyGroup>
1820
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1921
<DebugSymbols>true</DebugSymbols>
@@ -34,8 +36,19 @@
3436
<DebugSymbols>true</DebugSymbols>
3537
</PropertyGroup>
3638
<ItemGroup>
37-
<Reference Include="LibGit2Sharp, Version=0.21.0.176, Culture=neutral, processorArchitecture=MSIL">
38-
<HintPath>..\packages\LibGit2Sharp.0.21.0.176\lib\net40\LibGit2Sharp.dll</HintPath>
39+
<Reference Include="ApprovalTests, Version=3.0.0.0, Culture=neutral, PublicKeyToken=11bd7d124fc62e0f, processorArchitecture=MSIL">
40+
<SpecificVersion>False</SpecificVersion>
41+
<HintPath>..\packages\ApprovalTests.3.0.8\lib\net40\ApprovalTests.dll</HintPath>
42+
</Reference>
43+
<Reference Include="ApprovalUtilities, Version=3.0.0.0, Culture=neutral, PublicKeyToken=11bd7d124fc62e0f, processorArchitecture=MSIL">
44+
<SpecificVersion>False</SpecificVersion>
45+
<HintPath>..\packages\ApprovalUtilities.3.0.8\lib\net45\ApprovalUtilities.dll</HintPath>
46+
</Reference>
47+
<Reference Include="ApprovalUtilities.Net45">
48+
<HintPath>..\packages\ApprovalUtilities.3.0.8\lib\net45\ApprovalUtilities.Net45.dll</HintPath>
49+
</Reference>
50+
<Reference Include="LibGit2Sharp, Version=0.22.0.0, Culture=neutral, processorArchitecture=MSIL">
51+
<HintPath>..\packages\LibGit2Sharp.0.22.0-pre20150716071016\lib\net40\LibGit2Sharp.dll</HintPath>
3952
<Private>True</Private>
4053
</Reference>
4154
<Reference Include="NSubstitute, Version=1.9.2.0, Culture=neutral, PublicKeyToken=92dd2e9066daa5ca, processorArchitecture=MSIL">
@@ -118,8 +131,8 @@
118131
</PropertyGroup>
119132
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
120133
<PropertyGroup>
121-
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
134+
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
122135
</PropertyGroup>
123-
<Error Condition="!Exists('..\packages\LibGit2Sharp.0.21.0.176\build\net40\LibGit2Sharp.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\LibGit2Sharp.0.21.0.176\build\net40\LibGit2Sharp.props'))" />
136+
<Error Condition="!Exists('..\packages\LibGit2Sharp.NativeBinaries.1.0.72\build\LibGit2Sharp.NativeBinaries.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\LibGit2Sharp.NativeBinaries.1.0.72\build\LibGit2Sharp.NativeBinaries.props'))" />
124137
</Target>
125138
</Project>

src/GitVersionExe.Tests/packages.config

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="LibGit2Sharp" version="0.21.0.176" targetFramework="net45" />
3+
<package id="LibGit2Sharp" version="0.22.0-pre20150716071016" targetFramework="net45" />
4+
<package id="LibGit2Sharp.NativeBinaries" version="1.0.72" targetFramework="net45" />
45
<package id="NSubstitute" version="1.9.2.0" targetFramework="net45" />
56
<package id="NUnit" version="2.6.4" targetFramework="net45" />
67
<package id="NUnitTestAdapter" version="2.0.0" targetFramework="net45" />

src/GitVersionExe/GitVersionExe.csproj

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="..\packages\LibGit2Sharp.0.21.0.176\build\net40\LibGit2Sharp.props" Condition="Exists('..\packages\LibGit2Sharp.0.21.0.176\build\net40\LibGit2Sharp.props')" />
3+
<Import Project="..\packages\LibGit2Sharp.NativeBinaries.1.0.72\build\LibGit2Sharp.NativeBinaries.props" Condition="Exists('..\packages\LibGit2Sharp.NativeBinaries.1.0.72\build\LibGit2Sharp.NativeBinaries.props')" />
44
<PropertyGroup>
55
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
66
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -13,7 +13,8 @@
1313
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1414
<LangVersion>5</LangVersion>
1515
<FileAlignment>512</FileAlignment>
16-
<NuGetPackageImportStamp>3858a53b</NuGetPackageImportStamp>
16+
<NuGetPackageImportStamp>
17+
</NuGetPackageImportStamp>
1718
<BuildDir>$(SolutionDir)..\build\</BuildDir>
1819
</PropertyGroup>
1920
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
@@ -43,8 +44,8 @@
4344
<HintPath>..\packages\JetBrainsAnnotations.Fody.1.0.4.0\Lib\JetBrains.Annotations.dll</HintPath>
4445
<Private>False</Private>
4546
</Reference>
46-
<Reference Include="LibGit2Sharp, Version=0.21.0.176, Culture=neutral, processorArchitecture=MSIL">
47-
<HintPath>..\packages\LibGit2Sharp.0.21.0.176\lib\net40\LibGit2Sharp.dll</HintPath>
47+
<Reference Include="LibGit2Sharp, Version=0.22.0.0, Culture=neutral, processorArchitecture=MSIL">
48+
<HintPath>..\packages\LibGit2Sharp.0.22.0-pre20150716071016\lib\net40\LibGit2Sharp.dll</HintPath>
4849
<Private>True</Private>
4950
</Reference>
5051
<Reference Include="System" />
@@ -204,8 +205,8 @@
204205
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
205206
</PropertyGroup>
206207
<Error Condition="!Exists('..\packages\PepitaPackage.1.21.4\build\PepitaPackage.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\PepitaPackage.1.21.4\build\PepitaPackage.targets'))" />
207-
<Error Condition="!Exists('..\packages\LibGit2Sharp.0.21.0.176\build\net40\LibGit2Sharp.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\LibGit2Sharp.0.21.0.176\build\net40\LibGit2Sharp.props'))" />
208208
<Error Condition="!Exists('..\packages\Fody.1.29.3\build\portable-net+sl+win+wpa+wp\Fody.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Fody.1.29.3\build\portable-net+sl+win+wpa+wp\Fody.targets'))" />
209+
<Error Condition="!Exists('..\packages\LibGit2Sharp.NativeBinaries.1.0.72\build\LibGit2Sharp.NativeBinaries.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\LibGit2Sharp.NativeBinaries.1.0.72\build\LibGit2Sharp.NativeBinaries.props'))" />
209210
</Target>
210211
<Import Project="..\packages\PepitaPackage.1.21.4\build\PepitaPackage.targets" Condition="Exists('..\packages\PepitaPackage.1.21.4\build\PepitaPackage.targets')" />
211212
<Import Project="..\packages\Fody.1.29.3\build\portable-net+sl+win+wpa+wp\Fody.targets" Condition="Exists('..\packages\Fody.1.29.3\build\portable-net+sl+win+wpa+wp\Fody.targets')" />

src/GitVersionExe/packages.config

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
<package id="Caseless.Fody" version="1.3.7" targetFramework="net40" developmentDependency="true" />
44
<package id="Fody" version="1.29.3" targetFramework="net40" developmentDependency="true" />
55
<package id="JetBrainsAnnotations.Fody" version="1.0.4.0" targetFramework="net40" developmentDependency="true" />
6-
<package id="LibGit2Sharp" version="0.21.0.176" targetFramework="net40" />
6+
<package id="LibGit2Sharp" version="0.22.0-pre20150716071016" targetFramework="net4" />
7+
<package id="LibGit2Sharp.NativeBinaries" version="1.0.72" targetFramework="net4" />
78
<package id="PepitaPackage" version="1.21.4" targetFramework="net40" developmentDependency="true" />
89
<package id="Visualize.Fody" version="0.4.4.0" targetFramework="net4" developmentDependency="true" />
910
</packages>

0 commit comments

Comments
 (0)