I have created a C# class template. In it I reference "$rootnamespace$" as
the namespace. I would like it so any subfolder names do not get added when
"$rootnamespace$" is expanded. Is there a way to accomplish this? Thanks.
can you be more precise ?
>I have created a C# class template. In it I reference "$rootnamespace$" as
> the namespace. I would like it so any subfolder names do not get added
> when
> "$rootnamespace$" is expanded. Is there a way to accomplish this? Thanks.
Kelly - 15 Apr 2008 16:54 GMT
Say I have a project named “TestInitial35Stuff_01”. I create a folder in it
called “TestFolder”. Then within “TestFolder” I create a new class called
“Dog”. The namespace in class “Dog” will say “namespace
TestInitial35Stuff_01.TestFolder”
I would like it so the folder name “TestFolder” is not included in the
namespace name. I would like the namespace in class “Dog” to look like this:
“namespace TestInitial35Stuff_01”