From ef0abfae775f5924d3807de252e8752bf9425ec7 Mon Sep 17 00:00:00 2001 From: "Andrew Hall (METAL)" Date: Mon, 5 Aug 2019 14:23:12 -0700 Subject: [PATCH] For tests, always allow parse option changes --- src/EditorFeatures/TestUtilities/Workspaces/TestWorkspace.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/EditorFeatures/TestUtilities/Workspaces/TestWorkspace.cs b/src/EditorFeatures/TestUtilities/Workspaces/TestWorkspace.cs index 28b6ef0faec..ca7a29be04e 100644 --- a/src/EditorFeatures/TestUtilities/Workspaces/TestWorkspace.cs +++ b/src/EditorFeatures/TestUtilities/Workspaces/TestWorkspace.cs @@ -680,5 +680,8 @@ public void ChangeSolution(Solution solution) this.RaiseWorkspaceChangedEventAsync(WorkspaceChangeKind.SolutionChanged, oldSolution, newSolution); } + + public override bool CanApplyParseOptionChange(ParseOptions oldOptions, ParseOptions newOptions, Project project) + => true; } } -- GitLab