7 references to PreferCompoundAssignment
Microsoft.CodeAnalysis.CSharp.Features (1)
src\Analyzers\CSharp\Analyzers\UseCompoundAssignment\CSharpUseCompoundCoalesceAssignmentDiagnosticAnalyzer.cs (1)
31CodeStyleOptions2.PreferCompoundAssignment,
Microsoft.CodeAnalysis.Features (2)
src\Analyzers\Core\Analyzers\AnalyzerOptionsProvider.cs (1)
56public CodeStyleOption2<bool> PreferCompoundAssignment => GetOption(CodeStyleOptions2.PreferCompoundAssignment);
src\Analyzers\Core\Analyzers\UseCompoundAssignment\AbstractUseCompoundAssignmentDiagnosticAnalyzer.cs (1)
40CodeStyleOptions2.PreferCompoundAssignment,
Microsoft.VisualStudio.LanguageServices (1)
EditorConfigSettings\DataProvider\CodeStyle\CommonCodeStyleSettingsProvider.cs (1)
111yield 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)
2288CodeStyleItems.Add(new BooleanCodeStyleOptionViewModel(CodeStyleOptions2.PreferCompoundAssignment, ServicesVSResources.Prefer_compound_assignments, s_preferCompoundAssignments, s_preferCompoundAssignments, this, optionStore, expressionPreferencesGroupTitle));