7 references to PreferTupleSwap
Microsoft.CodeAnalysis.CSharp.Features (2)
src\Analyzers\CSharp\Analyzers\CodeStyle\CSharpAnalyzerOptionsProvider.cs (1)
67
public CodeStyleOption2<bool> PreferTupleSwap => GetOption(CSharpCodeStyleOptions.
PreferTupleSwap
);
src\Analyzers\CSharp\Analyzers\UseTupleSwap\CSharpUseTupleSwapDiagnosticAnalyzer.cs (1)
38
CSharpCodeStyleOptions.
PreferTupleSwap
,
Microsoft.CodeAnalysis.CSharp.Features.UnitTests (1)
src\Analyzers\CSharp\Tests\UseTupleSwap\UseTupleSwapTests.cs (1)
59
{ CSharpCodeStyleOptions.
PreferTupleSwap
, false, CodeStyle.NotificationOption2.Silent }
Microsoft.VisualStudio.LanguageServices.CSharp (4)
EditorConfigSettings\DataProvider\CodeStyle\CSharpCodeStyleSettingsProvider.cs (1)
119
yield return CodeStyleSetting.Create(CSharpCodeStyleOptions.
PreferTupleSwap
, ServicesVSResources.Prefer_tuple_swap, options, updater);
Options\AutomationObject\AutomationObject.Style.cs (2)
374
get { return GetXmlOption(CSharpCodeStyleOptions.
PreferTupleSwap
); }
375
set { SetXmlOption(CSharpCodeStyleOptions.
PreferTupleSwap
, value); }
Options\Formatting\StyleViewModel.cs (1)
2294
CodeStyleItems.Add(new BooleanCodeStyleOptionViewModel(CSharpCodeStyleOptions.
PreferTupleSwap
, ServicesVSResources.Prefer_tuple_swap, s_preferTupleSwap, s_preferTupleSwap, this, optionStore, expressionPreferencesGroupTitle));