8 references to OutsideNamespace
Microsoft.CodeAnalysis.CodeStyle (1)
AddImportPlacementOptions.cs (1)
23
new(AddImportPlacement.
OutsideNamespace
, NotificationOption2.Silent);
Microsoft.CodeAnalysis.CSharp.CodeStyle (4)
CSharpCodeStyleOptions_Parsing.cs (2)
58
"outside_namespace" => new CodeStyleOption2<AddImportPlacement>(AddImportPlacement.
OutsideNamespace
, notification),
72
AddImportPlacement.
OutsideNamespace
=> $"outside_namespace{notificationString}",
CSharpIdeCodeStyleOptions.cs (1)
41
new(AddImportPlacement.
OutsideNamespace
, NotificationOption2.Silent);
MisplacedUsingDirectivesDiagnosticAnalyzer.cs (1)
59
if (option.Value != AddImportPlacement.
OutsideNamespace
)
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (1)
MisplacedUsingDirectivesCodeFixProvider.cs (1)
377
if (preferPreservation || placement == AddImportPlacement.
OutsideNamespace
)
Microsoft.CodeAnalysis.CSharp.CodeStyle.UnitTests (2)
MisplacedUsingDirectivesTests.cs (2)
33
new(AddImportPlacement.
OutsideNamespace
, NotificationOption2.None);
42
new(AddImportPlacement.
OutsideNamespace
, NotificationOption2.Error);