1

I want my Visual Studio #CS editor to prefer using fully qualified naming at using statements. So i prefer:

using myproject.management.control.common;

rather than

using control.common;

There is such an option in Resharper "Prefer fully qualified using name at nested scope".

what is the parallel setting for this in the .editorconfig file?

Samer Aamar
  • 1,298
  • 1
  • 15
  • 23

1 Answers1

5

the flag in .editorconfig is as follows:

csharp_qualified_using_at_nested_scope = true

just set this to true

Samer Aamar
  • 1,298
  • 1
  • 15
  • 23