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)
89public CodeStyleOption2<bool> PreferTupleSwap => GetOption(CSharpCodeStyleOptions.PreferTupleSwap, FallbackCodeStyleOptions.PreferTupleSwap);
CSharpUseTupleSwapDiagnosticAnalyzer.cs (1)
38CSharpCodeStyleOptions.PreferTupleSwap,
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
CSharpIdeCodeStyleOptions.cs (1)
109PreferTupleSwap = options.GetOption(CSharpCodeStyleOptions.PreferTupleSwap, fallbackOptions.PreferTupleSwap);
Microsoft.VisualStudio.LanguageServices.CSharp (4)
EditorConfigSettings\DataProvider\CodeStyle\CSharpCodeStyleSettingsProvider.cs (1)
114yield return CodeStyleSetting.Create(CSharpCodeStyleOptions.PreferTupleSwap, ServicesVSResources.Prefer_tuple_swap, options, updater);
Options\AutomationObject\AutomationObject.Style.cs (2)
368get { return GetXmlOption(CSharpCodeStyleOptions.PreferTupleSwap); } 369set { SetXmlOption(CSharpCodeStyleOptions.PreferTupleSwap, value); }
Options\Formatting\StyleViewModel.cs (1)
2262CodeStyleItems.Add(new BooleanCodeStyleOptionViewModel(CSharpCodeStyleOptions.PreferTupleSwap, ServicesVSResources.Prefer_tuple_swap, s_preferTupleSwap, s_preferTupleSwap, this, optionStore, expressionPreferencesGroupTitle));