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)