Skip to content

Commit

Permalink
Update src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSys…
Browse files Browse the repository at this point in the history
…tem/VS/LanguageServices/ActiveWorkspaceProjectContextTracker.cs
  • Loading branch information
davkean authored Jan 4, 2019
1 parent a5c1ec5 commit e0cf5a5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ private string GetWorkspaceContextIdFromActiveContext()
{
// If we're never been set an active context, we just
// pick one based on the active configuration.
return _activeWorkspaceProjectContextHost.OpenContextForWriteAsync(a => Task.FromResult(a.ContextId));
return await _activeWorkspaceProjectContextHost.OpenContextForWriteAsync(a => Task.FromResult(a.ContextId));
}
catch (OperationCanceledException)
{ // Project unloading
Expand Down

0 comments on commit e0cf5a5

Please sign in to comment.