7 references to PreferCompoundAssignment
Microsoft.CodeAnalysis.CSharp.Features (1)
src\Analyzers\CSharp\Analyzers\UseCompoundAssignment\CSharpUseCompoundCoalesceAssignmentDiagnosticAnalyzer.cs (1)
31
CodeStyleOptions2.
PreferCompoundAssignment
,
Microsoft.CodeAnalysis.Features (2)
src\Analyzers\Core\Analyzers\AnalyzerOptionsProvider.cs (1)
56
public CodeStyleOption2<bool> PreferCompoundAssignment => GetOption(CodeStyleOptions2.
PreferCompoundAssignment
);
src\Analyzers\Core\Analyzers\UseCompoundAssignment\AbstractUseCompoundAssignmentDiagnosticAnalyzer.cs (1)
40
CodeStyleOptions2.
PreferCompoundAssignment
,
Microsoft.VisualStudio.LanguageServices (1)
EditorConfigSettings\DataProvider\CodeStyle\CommonCodeStyleSettingsProvider.cs (1)
111
yield return CodeStyleSetting.Create(CodeStyleOptions2.
PreferCompoundAssignment
, description: ServicesVSResources.Prefer_compound_assignments, options, updater);
Microsoft.VisualStudio.LanguageServices.CSharp (3)
Options\AutomationObject\AutomationObject.Style.cs (2)
254
get { return GetXmlOption(CodeStyleOptions2.
PreferCompoundAssignment
); }
255
set { SetXmlOption(CodeStyleOptions2.
PreferCompoundAssignment
, value); }
Options\Formatting\StyleViewModel.cs (1)
2288
CodeStyleItems.Add(new BooleanCodeStyleOptionViewModel(CodeStyleOptions2.
PreferCompoundAssignment
, ServicesVSResources.Prefer_compound_assignments, s_preferCompoundAssignments, s_preferCompoundAssignments, this, optionStore, expressionPreferencesGroupTitle));