Skip to content

Commit

Permalink
Move to the VS layer
Browse files Browse the repository at this point in the history
  • Loading branch information
davidwengier committed Dec 2, 2021
1 parent 00920ea commit b2925cb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
using Microsoft.VisualStudio.Debugger.Contracts.SourceLink;
using Microsoft.VisualStudio.Debugger.Contracts.SymbolLocator;

namespace Microsoft.CodeAnalysis.Editor.PdbSourceDocument
namespace Microsoft.VisualStudio.LanguageServices.PdbSourceDocument
{
[Export(typeof(ISourceLinkService)), Shared]
internal class SourceLinkService : ISourceLinkService
Expand Down Expand Up @@ -63,7 +63,7 @@ public SourceLinkService(IDebuggerSymbolLocatorService debuggerSymbolLocatorServ
dllPath,
codeViewEntry.Path);

var flags = SymbolLocatorSearchFlags.ForceMsftSymbolServer | SymbolLocatorSearchFlags.ForceNuGetSymbolServer;
var flags = SymbolLocatorSearchFlags.None; // TODO: Add option to specify ForceMsftSymbolServer and ForceNuGetSymbolServer: https://github.com/dotnet/roslyn/issues/55834
var result = await _debuggerSymbolLocatorService.LocateSymbolFileAsync(pdbInfo, flags, progress: null, cancellationToken).ConfigureAwait(false);

// TODO: Logging: https://github.com/dotnet/roslyn/issues/57352
Expand Down

0 comments on commit b2925cb

Please sign in to comment.