diff --git a/src/GitHub.App/GitHub.App.csproj b/src/GitHub.App/GitHub.App.csproj index f559929dc5..82207aacb2 100644 --- a/src/GitHub.App/GitHub.App.csproj +++ b/src/GitHub.App/GitHub.App.csproj @@ -1,6 +1,6 @@  - + Debug @@ -47,8 +47,8 @@ - - ..\..\packages\LibGit2Sharp.0.22.0\lib\net40\LibGit2Sharp.dll + + ..\..\packages\LibGit2Sharp.0.24.0\lib\net40\LibGit2Sharp.dll True @@ -238,7 +238,9 @@ - + + Designer + @@ -309,7 +311,7 @@ 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}. - + @@ -210,8 +210,8 @@ False - - ..\..\packages\LibGit2Sharp.0.22.0\lib\net40\LibGit2Sharp.dll + + ..\..\packages\LibGit2Sharp.0.24.0\lib\net40\LibGit2Sharp.dll True @@ -442,7 +442,7 @@ - + $(MSBuildToolsVersion) @@ -91,8 +91,8 @@ false - - ..\..\packages\LibGit2Sharp.0.22.0\lib\net40\LibGit2Sharp.dll + + ..\..\packages\LibGit2Sharp.0.24.0\lib\net40\LibGit2Sharp.dll True @@ -700,11 +700,11 @@ 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}. - + diff --git a/src/GitHub.VisualStudio/packages.config b/src/GitHub.VisualStudio/packages.config index 1a6f80bf53..18daed1c57 100644 --- a/src/GitHub.VisualStudio/packages.config +++ b/src/GitHub.VisualStudio/packages.config @@ -2,8 +2,8 @@ - - + + diff --git a/src/UnitTests/GitHub.App/Services/PullRequestServiceTests.cs b/src/UnitTests/GitHub.App/Services/PullRequestServiceTests.cs index 6adac8228d..c0674226f3 100644 --- a/src/UnitTests/GitHub.App/Services/PullRequestServiceTests.cs +++ b/src/UnitTests/GitHub.App/Services/PullRequestServiceTests.cs @@ -524,8 +524,8 @@ public async Task ShouldRemoveUnusedRemote() var branch2 = Substitute.For(); var branches = new List { branch1, branch2 }; var branchCollection = Substitute.For(); - branch1.Remote.Returns(remote1); - branch2.Remote.Returns(remote1); + branch1.RemoteName.Returns("remote1"); + branch2.RemoteName.Returns("remote1"); branchCollection.GetEnumerator().Returns(_ => branches.GetEnumerator()); repo.Branches.Returns(branchCollection); diff --git a/src/UnitTests/TestDoubles/FakeCommitLog.cs b/src/UnitTests/TestDoubles/FakeCommitLog.cs index 9be25c5a62..95e9064484 100644 --- a/src/UnitTests/TestDoubles/FakeCommitLog.cs +++ b/src/UnitTests/TestDoubles/FakeCommitLog.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using LibGit2Sharp; -public class FakeCommitLog : List, IQueryableCommitLog +public class FakeCommitLog : List, IQueryableCommitLog { public CommitSortStrategies SortedBy { @@ -36,4 +36,9 @@ public IEnumerable QueryBy(string path, FollowFilter filter) { throw new NotImplementedException(); } + + public IEnumerable QueryBy(string path, CommitFilter filter) + { + throw new NotImplementedException(); + } } diff --git a/src/UnitTests/UnitTests.csproj b/src/UnitTests/UnitTests.csproj index 8fbcb6c654..874d331db7 100644 --- a/src/UnitTests/UnitTests.csproj +++ b/src/UnitTests/UnitTests.csproj @@ -1,6 +1,6 @@  - + @@ -38,8 +38,8 @@ False - - ..\..\packages\LibGit2Sharp.0.22.0\lib\net40\LibGit2Sharp.dll + + ..\..\packages\LibGit2Sharp.0.24.0\lib\net40\LibGit2Sharp.dll True @@ -389,8 +389,8 @@ 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}. - +