8 references to PreferSimplifiedInterpolation
Microsoft.CodeAnalysis.Features (2)
AbstractSimplifyInterpolationDiagnosticAnalyzer.cs (1)
23CodeStyleOptions2.PreferSimplifiedInterpolation,
AnalyzerOptionsProvider.cs (1)
85public CodeStyleOption2<bool> PreferSimplifiedInterpolation => GetOption(CodeStyleOptions2.PreferSimplifiedInterpolation, FallbackCodeStyleOptions.PreferSimplifiedInterpolation);
Microsoft.CodeAnalysis.Workspaces (1)
IdeCodeStyleOptions.cs (1)
81PreferSimplifiedInterpolation = options.GetOption(CodeStyleOptions2.PreferSimplifiedInterpolation, language, fallbackOptions.PreferSimplifiedInterpolation);
Microsoft.VisualStudio.LanguageServices (1)
EditorConfigSettings\DataProvider\CodeStyle\CommonCodeStyleSettingsProvider.cs (1)
111yield return CodeStyleSetting.Create(CodeStyleOptions2.PreferSimplifiedInterpolation, description: ServicesVSResources.Prefer_simplified_interpolation, options, updater);
Microsoft.VisualStudio.LanguageServices.CSharp (2)
Options\AutomationObject\AutomationObject.Style.cs (2)
260get { return GetXmlOption(CodeStyleOptions2.PreferSimplifiedInterpolation); } 261set { SetXmlOption(CodeStyleOptions2.PreferSimplifiedInterpolation, value); }
Microsoft.VisualStudio.LanguageServices.VisualBasic (2)
Options\AutomationObject\AutomationObject.Style.vb (2)
183Return GetXmlOption(CodeStyleOptions2.PreferSimplifiedInterpolation) 186SetXmlOption(CodeStyleOptions2.PreferSimplifiedInterpolation, value)