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

Commit 7b312d3

Browse files
committed
Add xmldoc comments for BindingPathHelper
1 parent 221f19c commit 7b312d3

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

src/GitHub.VisualStudio/GitHubPackage.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@ public sealed class ServiceProviderPackage : AsyncPackage, IServiceProviderPacka
170170
protected override async Task InitializeAsync(CancellationToken cancellationToken, IProgress<ServiceProgressData> progress)
171171
{
172172
await CheckBindingPathsAsync();
173+
173174
AddService(typeof(IGitHubServiceProvider), CreateService, true);
174175
AddService(typeof(IVSGitExt), CreateService, true);
175176
AddService(typeof(IUsageTracker), CreateService, true);

src/GitHub.VisualStudio/Helpers/BindingPathHelper.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@
1212

1313
namespace GitHub.VisualStudio.Helpers
1414
{
15+
/// <summary>
16+
// When running in the Exp instance, ensure there is only one active binding path.
17+
// This is necessary when the regular (AllUsers) extension is also installed.
18+
/// </summary>
19+
/// <remarks>
20+
/// See https://github.com/github/VisualStudio/issues/1995
21+
/// </remarks>
1522
class BindingPathHelper
1623
{
1724
static readonly ILogger log = LogManager.ForContext<BindingPathHelper>();

0 commit comments

Comments
 (0)