feat: add option to use file scoped namespaces in bootstrap function
Closed this issue · 0 comments
cbosvik commented
Add possibility to bootstrap files with file scoped namespace instead of block scoped
namespace Core.Test;
public class TestClass
{
}
vs
namespace Core.Test
{
public class TestClass
{
}
}