提交 e111c0c8 编写于 作者: C CyrusNajmabadi

Rename experiment to fix 16 char requirement.

上级 e3f5e072
......@@ -39,7 +39,7 @@ internal abstract partial class AbstractDocumentHighlightsService : IDocumentHig
Document document, int position, IImmutableSet<Document> documentsToSearch, CancellationToken cancellationToken)
{
var session = await document.Project.Solution.TryCreateCodeAnalysisServiceSessionAsync(
DocumentHighlightingOptions.OutOfProcessAllowed, WellKnownExperimentNames.OutOfProcessAllowed, cancellationToken).ConfigureAwait(false);
DocumentHighlightingOptions.OutOfProcessAllowed, WellKnownExperimentNames.RoslynFeatureOOP, cancellationToken).ConfigureAwait(false);
using (session)
{
......
......@@ -37,7 +37,7 @@ internal abstract partial class AbstractNavigateToSearchService
private static Task<RemoteHostClient.Session> GetRemoteHostSessionAsync(Project project, CancellationToken cancellationToken)
{
return project.Solution.TryCreateCodeAnalysisServiceSessionAsync(
NavigateToOptions.OutOfProcessAllowed, WellKnownExperimentNames.OutOfProcessAllowed, cancellationToken);
NavigateToOptions.OutOfProcessAllowed, WellKnownExperimentNames.RoslynFeatureOOP, cancellationToken);
}
}
}
\ No newline at end of file
......@@ -19,6 +19,6 @@ internal class DefaultExperimentationService : IExperimentationService
internal static class WellKnownExperimentNames
{
public const string OutOfProcessAllowed = nameof(OutOfProcessAllowed);
public const string RoslynFeatureOOP = nameof(RoslynFeatureOOP);
}
}
\ No newline at end of file
......@@ -17,7 +17,7 @@ public static partial class SymbolFinder
Solution solution, object serverCallback, CancellationToken cancellationToken)
{
return solution.TryCreateCodeAnalysisServiceSessionAsync(
SymbolFinderOptions.OutOfProcessAllowed, WellKnownExperimentNames.OutOfProcessAllowed, serverCallback, cancellationToken);
SymbolFinderOptions.OutOfProcessAllowed, WellKnownExperimentNames.RoslynFeatureOOP, serverCallback, cancellationToken);
}
}
}
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册