8 references to NewLineForClausesInQuery
Microsoft.CodeAnalysis.CSharp.Workspaces (3)
CSharpSyntaxFormattingOptions.cs (1)
102
(options.GetOption(CSharpFormattingOptions2.
NewLineForClausesInQuery
, fallbackOptions.NewLines.HasFlag(NewLinePlacement.BetweenQueryExpressionClauses)) ? NewLinePlacement.BetweenQueryExpressionClauses : 0);
Formatting\CSharpFormattingOptions.cs (2)
188
/// <inheritdoc cref="CSharpFormattingOptions2.
NewLineForClausesInQuery
"/>
189
public static Option<bool> NewLineForClausesInQuery { get; } = CSharpFormattingOptions2.
NewLineForClausesInQuery
.ToPublicOption();
Microsoft.CodeAnalysis.CSharp.Workspaces.UnitTests (1)
Formatting\FormattingTests.cs (1)
2235
{ CSharpFormattingOptions2.
NewLineForClausesInQuery
, false }
Microsoft.VisualStudio.LanguageServices.CSharp (4)
EditorConfigSettings\DataProvider\Whitespace\CSharpWhitespaceSettingsProvider.cs (1)
97
yield return Setting.Create(CSharpFormattingOptions2.
NewLineForClausesInQuery
, CSharpVSResources.Place_query_expression_clauses_on_new_line, options, updaterService);
Options\AutomationObject\AutomationObject.Formatting.cs (2)
140
get { return GetBooleanOption(CSharpFormattingOptions2.
NewLineForClausesInQuery
); }
141
set { SetBooleanOption(CSharpFormattingOptions2.
NewLineForClausesInQuery
, value); }
Options\Formatting\NewLinesViewModel.cs (1)
231
Items.Add(new CheckBoxOptionViewModel(CSharpFormattingOptions2.
NewLineForClausesInQuery
, CSharpVSResources.Place_query_expression_clauses_on_new_line, s_queryExpressionPreview, this, optionStore));