8 references to PreferTupleSwap
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
UseTupleSwapTests.cs (1)
68
{ CSharpCodeStyleOptions.
PreferTupleSwap
, false, CodeStyle.NotificationOption2.Silent }
Microsoft.CodeAnalysis.CSharp.Features (2)
CSharpAnalyzerOptionsProvider.cs (1)
89
public CodeStyleOption2<bool> PreferTupleSwap => GetOption(CSharpCodeStyleOptions.
PreferTupleSwap
, FallbackCodeStyleOptions.PreferTupleSwap);
CSharpUseTupleSwapDiagnosticAnalyzer.cs (1)
38
CSharpCodeStyleOptions.
PreferTupleSwap
,
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
CSharpIdeCodeStyleOptions.cs (1)
109
PreferTupleSwap = options.GetOption(CSharpCodeStyleOptions.
PreferTupleSwap
, fallbackOptions.PreferTupleSwap);
Microsoft.VisualStudio.LanguageServices.CSharp (4)
EditorConfigSettings\DataProvider\CodeStyle\CSharpCodeStyleSettingsProvider.cs (1)
114
yield return CodeStyleSetting.Create(CSharpCodeStyleOptions.
PreferTupleSwap
, ServicesVSResources.Prefer_tuple_swap, options, updater);
Options\AutomationObject\AutomationObject.Style.cs (2)
368
get { return GetXmlOption(CSharpCodeStyleOptions.
PreferTupleSwap
); }
369
set { SetXmlOption(CSharpCodeStyleOptions.
PreferTupleSwap
, value); }
Options\Formatting\StyleViewModel.cs (1)
2262
CodeStyleItems.Add(new BooleanCodeStyleOptionViewModel(CSharpCodeStyleOptions.
PreferTupleSwap
, ServicesVSResources.Prefer_tuple_swap, s_preferTupleSwap, s_preferTupleSwap, this, optionStore, expressionPreferencesGroupTitle));