GustavEikaas/easy-dotnet.nvim

feat: add option to use file scoped namespaces in bootstrap function

Closed this issue · 0 comments

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
    {
    }
}