Skip to content

Is it possible to put the first using within the namespace instead of outside? #56

@Chane

Description

@Chane

If there are usings currently inside the namespace the usings are added inside with the others, however if it is the first using, then they are added outside.

Is there a way to configure the default behaviour.

E.g.

Instead of:

using NUnit.Framework;

namespace MVC.Tests.TagHelpers
{
    [TestFixture]
    public class TextResourceTagHelperTest
    {

    }
}

having

namespace MVC.Tests.TagHelpers
{
    using NUnit.Framework;

    [TestFixture]
    public class TextResourceTagHelperTest
    {

    }
}

(VIsual Studio 2019 RC.1)

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions