I'm working on a C# project in Visual Studio 2010 where I have the following folder structure:
ProjectName
ProjectName.sln
AssemblyName
AssemblyName.csproj
src
App.xaml
App.xaml.cs
MainWindow.xaml
MainWindow.xaml.cs
[additional code files and folders with code]
This results in all my code files having this namespace:
namespace AssemblyName.src
I would like to omit the src folder from the namespace resulting in this namespace:
namespace AssemblyName
Is this possible?
I like having all the source files separated from the metadata for the project. But I would like the "src" folder to be hidden from the namespace (for cosmetic reasons)