11 references to PreferCompoundAssignment
Microsoft.CodeAnalysis.CSharp.Features (1)
CSharpUseCompoundCoalesceAssignmentDiagnosticAnalyzer.cs (1)
34CodeStyleOptions2.PreferCompoundAssignment,
Microsoft.CodeAnalysis.Features (2)
AbstractUseCompoundAssignmentDiagnosticAnalyzer.cs (1)
38CodeStyleOptions2.PreferCompoundAssignment,
AnalyzerOptionsProvider.cs (1)
84public CodeStyleOption2<bool> PreferCompoundAssignment => GetOption(CodeStyleOptions2.PreferCompoundAssignment, FallbackCodeStyleOptions.PreferCompoundAssignment);
Microsoft.CodeAnalysis.Workspaces (1)
IdeCodeStyleOptions.cs (1)
80PreferCompoundAssignment = options.GetOption(CodeStyleOptions2.PreferCompoundAssignment, language, fallbackOptions.PreferCompoundAssignment);
Microsoft.VisualStudio.LanguageServices (1)
EditorConfigSettings\DataProvider\CodeStyle\CommonCodeStyleSettingsProvider.cs (1)
110yield return CodeStyleSetting.Create(CodeStyleOptions2.PreferCompoundAssignment, description: ServicesVSResources.Prefer_compound_assignments, options, updater);
Microsoft.VisualStudio.LanguageServices.CSharp (3)
Options\AutomationObject\AutomationObject.Style.cs (2)
254get { return GetXmlOption(CodeStyleOptions2.PreferCompoundAssignment); } 255set { SetXmlOption(CodeStyleOptions2.PreferCompoundAssignment, value); }
Options\Formatting\StyleViewModel.cs (1)
2256CodeStyleItems.Add(new BooleanCodeStyleOptionViewModel(CodeStyleOptions2.PreferCompoundAssignment, ServicesVSResources.Prefer_compound_assignments, s_preferCompoundAssignments, s_preferCompoundAssignments, this, optionStore, expressionPreferencesGroupTitle));
Microsoft.VisualStudio.LanguageServices.VisualBasic (3)
Options\AutomationObject\AutomationObject.Style.vb (2)
174Return GetXmlOption(CodeStyleOptions2.PreferCompoundAssignment) 177SetXmlOption(CodeStyleOptions2.PreferCompoundAssignment, value)
Options\StyleViewModel.vb (1)
844Me.CodeStyleItems.Add(New BooleanCodeStyleOptionViewModel(CodeStyleOptions2.PreferCompoundAssignment, ServicesVSResources.Prefer_compound_assignments, s_preferCompoundAssignments, s_preferCompoundAssignments, Me, optionStore, expressionPreferencesGroupTitle))