PackageInstallerServiceFactory.cs 25.2 KB
Newer Older
1
// Copyright (c) Microsoft.  All Rights Reserved.  Licensed under the Apache License, Version 2.0.  See License.txt in the project root for license information.
2 3 4 5 6 7 8 9 10 11

using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Composition;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.CodeAnalysis;
12
using Microsoft.CodeAnalysis.ErrorReporting;
13
using Microsoft.CodeAnalysis.Host.Mef;
14
using Microsoft.CodeAnalysis.Notification;
15
using Microsoft.CodeAnalysis.Packaging;
16
using Microsoft.CodeAnalysis.Shared.Options;
17
using Microsoft.CodeAnalysis.Shared.Utilities;
18
using Microsoft.CodeAnalysis.SymbolSearch;
19 20 21 22
using Microsoft.CodeAnalysis.Text;
using Microsoft.VisualStudio.ComponentModelHost;
using Microsoft.VisualStudio.Editor;
using Microsoft.VisualStudio.LanguageServices.Implementation.ProjectSystem;
23
using Microsoft.VisualStudio.LanguageServices.SymbolSearch;
24
using Microsoft.VisualStudio.LanguageServices.Utilities;
25 26 27
using Microsoft.VisualStudio.Shell.Interop;
using NuGet.VisualStudio;
using Roslyn.Utilities;
28
using SVsServiceProvider = Microsoft.VisualStudio.Shell.SVsServiceProvider;
29 30 31 32 33 34 35 36 37 38 39 40 41

namespace Microsoft.VisualStudio.LanguageServices.Packaging
{
    /// <summary>
    /// Free threaded wrapper around the NuGet.VisualStudio STA package installer interfaces.
    /// We want to be able to make queries about packages from any thread.  For example, the
    /// add-nuget-reference feature wants to know what packages a project already has 
    /// references to.  NuGet.VisualStudio provides this information, but only in a COM STA 
    /// manner.  As we don't want our background work to bounce and block on the UI thread 
    /// we have this helper class which queries the information on the UI thread and caches
    /// the data so it can be read from the background.
    /// </summary>
    [ExportWorkspaceService(typeof(IPackageInstallerService)), Shared]
42
    internal partial class PackageInstallerService : AbstractDelayStartedService, IPackageInstallerService, IVsSearchProviderCallback
43 44
    {
        private readonly object _gate = new object();
45
        private readonly VisualStudioWorkspaceImpl _workspace;
46
        private readonly SVsServiceProvider _serviceProvider;
47 48
        private readonly IVsEditorAdaptersFactoryService _editorAdaptersFactoryService;

C
CyrusNajmabadi 已提交
49 50 51
        // We refer to the package services through proxy types so that we can
        // delay loading their DLLs until we actually need them.
        private IPackageServicesProxy _packageServices;
52 53 54 55 56 57 58 59 60 61 62 63 64 65

        private CancellationTokenSource _tokenSource = new CancellationTokenSource();

        // We keep track of what types of changes we've seen so we can then determine what to
        // refresh on the UI thread.  If we hear about project changes, we only refresh that
        // project.  If we hear about a solution level change, we'll refresh all projects.
        private bool _solutionChanged;
        private HashSet<ProjectId> _changedProjects = new HashSet<ProjectId>();

        private readonly ConcurrentDictionary<ProjectId, Dictionary<string, string>> _projectToInstalledPackageAndVersion =
            new ConcurrentDictionary<ProjectId, Dictionary<string, string>>();

        [ImportingConstructor]
        public PackageInstallerService(
66
            VisualStudioWorkspaceImpl workspace,
67
            SVsServiceProvider serviceProvider,
68
            IVsEditorAdaptersFactoryService editorAdaptersFactoryService)
69 70 71
            : base(workspace, SymbolSearchOptions.Enabled,
                              SymbolSearchOptions.SuggestForTypesInReferenceAssemblies,
                              SymbolSearchOptions.SuggestForTypesInNuGetPackages)
72
        {
73
            _workspace = workspace;
74
            _serviceProvider = serviceProvider;
75 76 77
            _editorAdaptersFactoryService = editorAdaptersFactoryService;
        }

78
        public ImmutableArray<PackageSource> PackageSources { get; private set; } = ImmutableArray<PackageSource>.Empty;
79

80 81
        public event EventHandler PackageSourcesChanged;

C
CyrusNajmabadi 已提交
82
        public bool IsEnabled => _packageServices != null;
83 84

        protected override void EnableService()
85
        {
86
            // Our service has been enabled.  Now load the VS package dlls.
87
            var componentModel = (IComponentModel)_serviceProvider.GetService(typeof(SComponentModel));
88 89 90 91 92

            var packageInstallerServices = componentModel.GetExtensions<IVsPackageInstallerServices>().FirstOrDefault();
            var packageInstaller = componentModel.GetExtensions<IVsPackageInstaller>().FirstOrDefault();
            var packageUninstaller = componentModel.GetExtensions<IVsPackageUninstaller>().FirstOrDefault();
            var packageSourceProvider = componentModel.GetExtensions<IVsPackageSourceProvider>().FirstOrDefault();
93

94 95 96 97
            if (packageInstallerServices == null ||
                packageInstaller == null ||
                packageUninstaller == null ||
                packageSourceProvider == null)
98 99 100 101
            {
                return;
            }

C
CyrusNajmabadi 已提交
102 103
            _packageServices = new PackageServicesProxy(
                packageInstallerServices, packageInstaller, packageUninstaller, packageSourceProvider);
104 105 106

            // Start listening to additional events workspace changes.
            _workspace.WorkspaceChanged += OnWorkspaceChanged;
C
CyrusNajmabadi 已提交
107
            _packageServices.SourcesChanged += OnSourceProviderSourcesChanged;
C
CyrusNajmabadi 已提交
108 109
        }

110
        protected override void StartWorking()
111 112 113
        {
            this.AssertIsForeground();

114 115 116 117 118
            if (!this.IsEnabled)
            {
                return;
            }

119
            OnSourceProviderSourcesChanged(this, EventArgs.Empty);
120 121
            OnWorkspaceChanged(null, new WorkspaceChangeEventArgs(
                WorkspaceChangeKind.SolutionAdded, null, null));
122 123 124 125 126 127 128 129 130 131 132 133
        }

        private void OnSourceProviderSourcesChanged(object sender, EventArgs e)
        {
            if (!this.IsForeground())
            {
                this.InvokeBelowInputPriority(() => OnSourceProviderSourcesChanged(sender, e));
                return;
            }

            this.AssertIsForeground();

C
CyrusNajmabadi 已提交
134
            PackageSources = _packageServices.GetSources(includeUnOfficial: true, includeDisabled: false)
135
                .Select(r => new PackageSource(r.Key, r.Value))
136
                .ToImmutableArrayOrEmpty();
137 138

            PackageSourcesChanged?.Invoke(this, EventArgs.Empty);
139 140 141
        }

        public bool TryInstallPackage(
142 143 144 145 146 147
            Workspace workspace,
            DocumentId documentId,
            string source,
            string packageName,
            string versionOpt,
            CancellationToken cancellationToken)
148 149 150 151 152 153
        {
            this.AssertIsForeground();

            // The 'workspace == _workspace' line is probably not necessary. However, we include 
            // it just to make sure that someone isn't trying to install a package into a workspace
            // other than the VisualStudioWorkspace.
C
CyrusNajmabadi 已提交
154
            if (workspace == _workspace && _workspace != null && _packageServices != null)
155 156
            {
                var projectId = documentId.ProjectId;
157
                var dte = (EnvDTE.DTE)_serviceProvider.GetService(typeof(SDTE));
158 159 160 161 162
                var dteProject = _workspace.TryGetDTEProject(projectId);
                if (dteProject != null)
                {
                    var description = string.Format(ServicesVSResources.Install_0, packageName);

163 164
                    var undoManager = _editorAdaptersFactoryService.TryGetUndoManager(
                        workspace, documentId, cancellationToken);
165

166
                    return TryInstallAndAddUndoAction(source, packageName, versionOpt, dte, dteProject, undoManager);
167 168 169 170 171 172 173
                }
            }

            return false;
        }

        private bool TryInstallPackage(
174 175 176 177 178
            string source,
            string packageName,
            string versionOpt,
            EnvDTE.DTE dte,
            EnvDTE.Project dteProject)
179 180 181
        {
            try
            {
C
CyrusNajmabadi 已提交
182
                if (!_packageServices.IsPackageInstalled(dteProject, packageName))
183 184
                {
                    dte.StatusBar.Text = string.Format(ServicesVSResources.Installing_0, packageName);
C
CyrusNajmabadi 已提交
185
                    _packageServices.InstallPackage(source, dteProject, packageName, versionOpt, ignoreDependencies: false);
186 187 188 189 190 191 192 193 194 195

                    var installedVersion = GetInstalledVersion(packageName, dteProject);
                    dte.StatusBar.Text = string.Format(ServicesVSResources.Installing_0_completed,
                        GetStatusBarText(packageName, installedVersion));

                    return true;
                }

                // fall through.
            }
196
            catch (Exception e) when (FatalError.ReportWithoutCrash(e))
197
            {
198
                dte.StatusBar.Text = string.Format(ServicesVSResources.Package_install_failed_colon_0, e.Message);
199 200 201

                var notificationService = _workspace.Services.GetService<INotificationService>();
                notificationService?.SendNotification(
202
                    string.Format(ServicesVSResources.Installing_0_failed_Additional_information_colon_1, packageName, e.Message),
203 204
                    severity: NotificationSeverity.Error);

205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
                // fall through.
            }

            return false;
        }

        private static string GetStatusBarText(string packageName, string installedVersion)
        {
            return installedVersion == null ? packageName : $"{packageName} - {installedVersion}";
        }

        private bool TryUninstallPackage(
            string packageName, EnvDTE.DTE dte, EnvDTE.Project dteProject)
        {
            this.AssertIsForeground();

            try
            {
C
CyrusNajmabadi 已提交
223
                if (_packageServices.IsPackageInstalled(dteProject, packageName))
224 225 226
                {
                    dte.StatusBar.Text = string.Format(ServicesVSResources.Uninstalling_0, packageName);
                    var installedVersion = GetInstalledVersion(packageName, dteProject);
C
CyrusNajmabadi 已提交
227
                    _packageServices.UninstallPackage(dteProject, packageName, removeDependencies: true);
228

C
CyrusNajmabadi 已提交
229
                    dte.StatusBar.Text = string.Format(ServicesVSResources.Uninstalling_0_completed,
230 231 232 233 234 235 236
                        GetStatusBarText(packageName, installedVersion));

                    return true;
                }

                // fall through.
            }
237
            catch (Exception e) when (FatalError.ReportWithoutCrash(e))
238
            {
239
                dte.StatusBar.Text = string.Format(ServicesVSResources.Package_uninstall_failed_colon_0, e.Message);
240 241 242

                var notificationService = _workspace.Services.GetService<INotificationService>();
                notificationService?.SendNotification(
243
                    string.Format(ServicesVSResources.Uninstalling_0_failed_Additional_information_colon_1, packageName, e.Message),
244 245
                    severity: NotificationSeverity.Error);

246 247 248 249 250 251 252 253 254 255 256 257
                // fall through.
            }

            return false;
        }

        private string GetInstalledVersion(string packageName, EnvDTE.Project dteProject)
        {
            this.AssertIsForeground();

            try
            {
C
CyrusNajmabadi 已提交
258
                var installedPackages = _packageServices.GetInstalledPackages(dteProject);
259 260 261
                var metadata = installedPackages.FirstOrDefault(m => m.Id == packageName);
                return metadata?.VersionString;
            }
262
            catch (Exception e) when (FatalError.ReportWithoutCrash(e))
263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328
            {
                return null;
            }
        }

        private void OnWorkspaceChanged(object sender, WorkspaceChangeEventArgs e)
        {
            ThisCanBeCalledOnAnyThread();

            bool localSolutionChanged = false;
            ProjectId localChangedProject = null;
            switch (e.Kind)
            {
                default:
                    // Nothing to do for any other events.
                    return;

                case WorkspaceChangeKind.ProjectAdded:
                case WorkspaceChangeKind.ProjectChanged:
                case WorkspaceChangeKind.ProjectReloaded:
                case WorkspaceChangeKind.ProjectRemoved:
                    localChangedProject = e.ProjectId;
                    break;

                case WorkspaceChangeKind.SolutionAdded:
                case WorkspaceChangeKind.SolutionChanged:
                case WorkspaceChangeKind.SolutionCleared:
                case WorkspaceChangeKind.SolutionReloaded:
                case WorkspaceChangeKind.SolutionRemoved:
                    localSolutionChanged = true;
                    break;
            }

            lock (_gate)
            {
                // Augment the data that the foreground thread will process.
                _solutionChanged |= localSolutionChanged;
                if (localChangedProject != null)
                {
                    _changedProjects.Add(localChangedProject);
                }

                // Now cancel any inflight work that is processing the data.
                _tokenSource.Cancel();
                _tokenSource = new CancellationTokenSource();

                // And enqueue a new job to process things.  Wait one second before starting.
                // That way if we get a flurry of events we'll end up processing them after
                // they've all come in.
                var cancellationToken = _tokenSource.Token;
                Task.Delay(TimeSpan.FromSeconds(1), cancellationToken)
                    .ContinueWith(_ => ProcessBatchedChangesOnForeground(cancellationToken), cancellationToken, TaskContinuationOptions.OnlyOnRanToCompletion, this.ForegroundTaskScheduler);
            }
        }

        private void ProcessBatchedChangesOnForeground(CancellationToken cancellationToken)
        {
            this.AssertIsForeground();

            // If we've been asked to stop, then there's no point proceeding.
            if (cancellationToken.IsCancellationRequested)
            {
                return;
            }

            // If we've been disconnected, then there's no point proceeding.
C
CyrusNajmabadi 已提交
329
            if (_workspace == null || _packageServices == null)
330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403
            {
                return;
            }

            // Get a project to process.
            var solution = _workspace.CurrentSolution;
            var projectId = DequeueNextProject(solution);
            if (projectId == null)
            {
                // No project to process, nothing to do.
                return;
            }

            // Process this single project.
            ProcessProjectChange(solution, projectId);

            // After processing this single project, yield so the foreground thread
            // can do more work.  Then go and loop again so we can process the 
            // rest of the projects.
            Task.Factory.SafeStartNew(
                () => ProcessBatchedChangesOnForeground(cancellationToken), cancellationToken, ForegroundTaskScheduler);
        }

        private ProjectId DequeueNextProject(Solution solution)
        {
            this.AssertIsForeground();

            lock (_gate)
            {
                // If we detected a solution change, then we need to process all projects.
                // This includes all the projects that we already know about, as well as
                // all the projects in the current workspace solution.
                if (_solutionChanged)
                {
                    _changedProjects.AddRange(solution.ProjectIds);
                    _changedProjects.AddRange(_projectToInstalledPackageAndVersion.Keys);
                }

                _solutionChanged = false;

                // Remove and return the first project in the list.
                var projectId = _changedProjects.FirstOrDefault();
                _changedProjects.Remove(projectId);
                return projectId;
            }
        }

        private void ProcessProjectChange(Solution solution, ProjectId projectId)
        {
            this.AssertIsForeground();

            // Remove anything we have associated with this project.
            Dictionary<string, string> installedPackages;
            _projectToInstalledPackageAndVersion.TryRemove(projectId, out installedPackages);

            if (!solution.ContainsProject(projectId))
            {
                // Project was removed.  Nothing needs to be done.
                return;
            }

            // Project was changed in some way.  Let's go find the set of installed packages for it.
            var dteProject = _workspace.TryGetDTEProject(projectId);
            if (dteProject == null)
            {
                // Don't have a DTE project for this project ID.  not something we can query nuget for.
                return;
            }

            installedPackages = new Dictionary<string, string>();

            // Calling into nuget.  Assume they may fail for any reason.
            try
            {
C
CyrusNajmabadi 已提交
404
                var installedPackageMetadata = _packageServices.GetInstalledPackages(dteProject);
405 406
                installedPackages.AddRange(installedPackageMetadata.Select(m => new KeyValuePair<string, string>(m.Id, m.VersionString)));
            }
407
            catch (Exception e) when (FatalError.ReportWithoutCrash(e))
408 409 410 411 412 413 414 415 416 417 418 419 420 421 422
            {
            }

            _projectToInstalledPackageAndVersion.AddOrUpdate(projectId, installedPackages, (_1, _2) => installedPackages);
        }

        public bool IsInstalled(Workspace workspace, ProjectId projectId, string packageName)
        {
            ThisCanBeCalledOnAnyThread();

            Dictionary<string, string> installedPackages;
            return _projectToInstalledPackageAndVersion.TryGetValue(projectId, out installedPackages) &&
                installedPackages.ContainsKey(packageName);
        }

423
        public ImmutableArray<string> GetInstalledVersions(string packageName)
424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447
        {
            ThisCanBeCalledOnAnyThread();

            var installedVersions = new HashSet<string>();
            foreach (var installedPackages in _projectToInstalledPackageAndVersion.Values)
            {
                string version = null;
                if (installedPackages?.TryGetValue(packageName, out version) == true && version != null)
                {
                    installedVersions.Add(version);
                }
            }

            // Order the versions with a weak heuristic so that 'newer' versions come first.
            // Essentially, we try to break the version on dots, and then we use a LogicalComparer
            // to try to more naturally order the things we see between the dots.
            var versionsAndSplits = installedVersions.Select(v => new { Version = v, Split = v.Split('.') }).ToList();

            versionsAndSplits.Sort((v1, v2) =>
            {
                var diff = CompareSplit(v1.Split, v2.Split);
                return diff != 0 ? diff : -v1.Version.CompareTo(v2.Version);
            });

448
            return versionsAndSplits.Select(v => v.Version).ToImmutableArray();
449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500
        }

        private int CompareSplit(string[] split1, string[] split2)
        {
            ThisCanBeCalledOnAnyThread();

            for (int i = 0, n = Math.Min(split1.Length, split2.Length); i < n; i++)
            {
                // Prefer things that look larger.  i.e. 7 should come before 6. 
                // Use a logical string comparer so that 10 is understood to be
                // greater than 3.
                var diff = -LogicalStringComparer.Instance.Compare(split1[i], split2[i]);
                if (diff != 0)
                {
                    return diff;
                }
            }

            // Choose the one with more parts.
            return split2.Length - split1.Length;
        }

        public IEnumerable<Project> GetProjectsWithInstalledPackage(Solution solution, string packageName, string version)
        {
            ThisCanBeCalledOnAnyThread();

            var result = new List<Project>();

            foreach (var kvp in this._projectToInstalledPackageAndVersion)
            {
                var installedPackageAndVersion = kvp.Value;
                if (installedPackageAndVersion != null)
                {
                    string installedVersion;
                    if (installedPackageAndVersion.TryGetValue(packageName, out installedVersion) && installedVersion == version)
                    {
                        var project = solution.GetProject(kvp.Key);
                        if (project != null)
                        {
                            result.Add(project);
                        }
                    }
                }
            }

            return result;
        }

        public void ShowManagePackagesDialog(string packageName)
        {
            this.AssertIsForeground();

501
            var shell = (IVsShell)_serviceProvider.GetService(typeof(SVsShell));
502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561
            if (shell == null)
            {
                return;
            }

            IVsPackage nugetPackage;
            var nugetGuid = new Guid("5fcc8577-4feb-4d04-ad72-d6c629b083cc");
            shell.LoadPackage(ref nugetGuid, out nugetPackage);
            if (nugetPackage == null)
            {
                return;
            }

            // We're able to launch the package manager (with an item in its search box) by
            // using the IVsSearchProvider API that the nuget package exposes.
            //
            // We get that interface for it and then pass it a SearchQuery that effectively
            // wraps the package name we're looking for.  The NuGet package will then read
            // out that string and populate their search box with it.
            var extensionProvider = (IVsPackageExtensionProvider)nugetPackage;
            var extensionGuid = new Guid("042C2B4B-C7F7-49DB-B7A2-402EB8DC7892");
            var emptyGuid = Guid.Empty;
            var searchProvider = (IVsSearchProvider)extensionProvider.CreateExtensionInstance(ref emptyGuid, ref extensionGuid);
            var task = searchProvider.CreateSearch(dwCookie: 1, pSearchQuery: new SearchQuery(packageName), pSearchCallback: this);
            task.Start();
        }

        public void ReportProgress(IVsSearchTask pTask, uint dwProgress, uint dwMaxProgress)
        {
        }

        public void ReportComplete(IVsSearchTask pTask, uint dwResultsFound)
        {
        }

        public void ReportResult(IVsSearchTask pTask, IVsSearchItemResult pSearchItemResult)
        {
            pSearchItemResult.InvokeAction();
        }

        public void ReportResults(IVsSearchTask pTask, uint dwResults, IVsSearchItemResult[] pSearchItemResults)
        {
        }

        private class SearchQuery : IVsSearchQuery
        {
            public SearchQuery(string packageName)
            {
                this.SearchString = packageName;
            }

            public string SearchString { get; }

            public uint ParseError => 0;

            public uint GetTokens(uint dwMaxTokens, IVsSearchToken[] rgpSearchTokens)
            {
                return 0;
            }
        }
562

C
CyrusNajmabadi 已提交
563
        private class PackageServicesProxy : IPackageServicesProxy
564
        {
C
CyrusNajmabadi 已提交
565 566 567 568
            private readonly IVsPackageInstaller _packageInstaller;
            private readonly IVsPackageInstallerServices _packageInstallerServices;
            private readonly IVsPackageSourceProvider _packageSourceProvider;
            private readonly IVsPackageUninstaller _packageUninstaller;
569

C
CyrusNajmabadi 已提交
570
            public PackageServicesProxy(IVsPackageInstallerServices packageInstallerServices, IVsPackageInstaller packageInstaller, IVsPackageUninstaller packageUninstaller, IVsPackageSourceProvider packageSourceProvider)
571
            {
C
CyrusNajmabadi 已提交
572 573 574 575
                _packageInstallerServices = packageInstallerServices;
                _packageInstaller = packageInstaller;
                _packageUninstaller = packageUninstaller;
                _packageSourceProvider = packageSourceProvider;
576 577 578 579
            }

            public IEnumerable<PackageMetadata> GetInstalledPackages(EnvDTE.Project project)
            {
C
CyrusNajmabadi 已提交
580
                return _packageInstallerServices.GetInstalledPackages(project)
581 582 583 584 585 586
                                  .Select(m => new PackageMetadata(m.Id, m.VersionString))
                                  .ToList();
            }

            public bool IsPackageInstalled(EnvDTE.Project project, string id)
            {
C
CyrusNajmabadi 已提交
587
                return _packageInstallerServices.IsPackageInstalled(project, id);
588 589 590 591
            }

            public void InstallPackage(string source, EnvDTE.Project project, string packageId, string version, bool ignoreDependencies)
            {
C
CyrusNajmabadi 已提交
592
                _packageInstaller.InstallPackage(source, project, packageId, version, ignoreDependencies);
593 594 595 596 597 598
            }

            public event EventHandler SourcesChanged
            {
                add
                {
C
CyrusNajmabadi 已提交
599
                    _packageSourceProvider.SourcesChanged += value;
600 601 602 603
                }

                remove
                {
C
CyrusNajmabadi 已提交
604
                    _packageSourceProvider.SourcesChanged -= value;
605 606 607 608 609
                }
            }

            public IEnumerable<KeyValuePair<string, string>> GetSources(bool includeUnOfficial, bool includeDisabled)
            {
C
CyrusNajmabadi 已提交
610
                return _packageSourceProvider.GetSources(includeUnOfficial, includeDisabled);
611 612 613 614
            }

            public void UninstallPackage(EnvDTE.Project project, string packageId, bool removeDependencies)
            {
C
CyrusNajmabadi 已提交
615
                _packageUninstaller.UninstallPackage(project, packageId, removeDependencies);
616 617
            }
        }
618
    }
619
}