8000 Removed `IConnection.Repositories`. by grokys · Pull Request #1279 · github/VisualStudio · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Removed IConnection.Repositories. #1279

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Moved LocalRepositories to GitHub.VisualStudio.
Following advice by @shana.
  • Loading branch information
grokys committed Oct 24, 2017
commit 213a7fc7269e1244908815863d8c9553e2ba5837
1 change: 0 additions & 1 deletion src/GitHub.App/GitHub.App.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,6 @@
<Compile Include="Models\IssueCommentModel.cs" />
<Compile Include="Models\PullRequestReviewCommentModel.cs" />
<Compile Include="Models\PullRequestDetailArgument.cs" />
<Compile Include="Services\LocalRepositories.cs" />
<Compile Include="ViewModels\ViewModelBase.cs" />
<Compile Include="Caches\CacheIndex.cs" />
<Compile Include="Caches\CacheItem.cs" />
Expand Down
1 change: 1 addition & 0 deletions src/GitHub.VisualStudio/GitHub.VisualStudio.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,7 @@
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Helpers\Browser.cs" />
<Compile Include="Services\JsonConnectionCache.cs" />
<Compile Include="Services\LocalRepositories.cs" />
<Compile Include="Services\UIProvider.cs" />
<Compile Include="Services\UsageTracker.cs" />
<Compile Include="Services\LoginManagerDispatcher.cs" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@
using GitHub.Extensions;
using GitHub.Helpers;
using GitHub.Models;
using GitHub.Services;

namespace GitHub.App.Services
namespace GitHub.Services
{
/// <summary>
/// Stores a collection of known local repositories.
Expand Down
0