Loading

dotnet_sort_system_directives_first

Put System.* usings before all others.

Value Notes
true
false

Default: false

dotnet_sort_system_directives_first = true
		
using Foo.Bar;
using System;
using Baz.Qux;
using System.Collections.Generic;

namespace N;

public class Widget { }
		
using System;
using System.Collections.Generic;
using Baz.Qux;
using Foo.Bar;

namespace N;

public class Widget { }
		
dotnet_sort_system_directives_first = false
		
using Foo.Bar;
using System;
using Baz.Qux;
using System.Collections.Generic;

namespace N;

public class Widget { }
		
using Foo.Bar;
using System;
using Baz.Qux;
using System.Collections.Generic;

namespace N;

public class Widget { }