In every generated file, I get a list of `using` statements. The last one is for the assembly itself, so if the file is in the `Foo.Bar.Baz` assembly then I get `using Foo.Bar.Baz;`.
Problem is, there are no classes in that namespace, and so it doesn't compile.
I assume it's inserted automatically just as a failsafe. But that blind failsafe breaks in my case.
How do I fix this?
Problem is, there are no classes in that namespace, and so it doesn't compile.
I assume it's inserted automatically just as a failsafe. But that blind failsafe breaks in my case.
How do I fix this?