4 overrides of ReturnCodeActionAndRenamePathsWithPrefixedSlash
Microsoft.AspNetCore.Razor.Test.Common.Tooling (1)
Workspaces\TestLanguageServerFeatureOptions.cs (1)
15public override bool ReturnCodeActionAndRenamePathsWithPrefixedSlash => false;
Microsoft.CodeAnalysis.Remote.Razor (1)
Initialization\RemoteLanguageServerFeatureOptions.cs (1)
26public override bool ReturnCodeActionAndRenamePathsWithPrefixedSlash => _options.ReturnCodeActionAndRenamePathsWithPrefixedSlash;
Microsoft.VisualStudio.LanguageServices.Razor (1)
VisualStudioLanguageServerFeatureOptions.cs (1)
33public override bool ReturnCodeActionAndRenamePathsWithPrefixedSlash => false;
Microsoft.VisualStudioCode.RazorExtension (1)
Services\VSCodeLanguageServerFeatureOptions.cs (1)
17public override bool ReturnCodeActionAndRenamePathsWithPrefixedSlash => PlatformInformation.IsWindows;
3 references to ReturnCodeActionAndRenamePathsWithPrefixedSlash
Microsoft.CodeAnalysis.Razor.Workspaces (1)
Extensions\LspFactory.cs (1)
212var updateFilePath = options.ReturnCodeActionAndRenamePathsWithPrefixedSlash && !filePath.StartsWith('/')
Microsoft.VisualStudio.LanguageServices.Razor (1)
Remote\RemoteServiceInvoker.cs (1)
187ReturnCodeActionAndRenamePathsWithPrefixedSlash = _languageServerFeatureOptions.ReturnCodeActionAndRenamePathsWithPrefixedSlash,
Microsoft.VisualStudioCode.RazorExtension (1)
Services\VSCodeRemoteServicesInitializer.cs (1)
57ReturnCodeActionAndRenamePathsWithPrefixedSlash = _featureOptions.ReturnCodeActionAndRenamePathsWithPrefixedSlash,