|
|
|
| Hi everyone,
A wee question:
How do I create namespaces that follow the standard below:
mycompanyname.bll
mycompanyname.pl
mycompanyname.dl
VS.NET will always (by default) start with "system" or something like that.
That's not what I want.
Thx for any help
BM
| |
| Robbe Morris [C# MVP] 2005-10-30, 7:00 pm |
| Right click the project and set the assembly name in
the properties. It doesn't necessarily have to
match the name space in your actual classes
but most people do.
I think the most common namespace naming
convention is:
companyname.productname.somedescriptorofassemblypurpose.dll
--
Robbe Morris - 2004/2005 Microsoft MVP C#
http://www.masterado.net
"BM" <mcbueno2k@hotmail.com> wrote in message
news:SW89f.1211$LF3.72198@news20.bellglobal.com...
> Hi everyone,
>
> A wee question:
>
> How do I create namespaces that follow the standard below:
>
> mycompanyname.bll
> mycompanyname.pl
> mycompanyname.dl
>
> VS.NET will always (by default) start with "system" or something like
> that. That's not what I want.
>
> Thx for any help
>
> BM
>
>
| |
| Gaurav Vaish 2005-10-30, 7:00 pm |
| : mycompanyname.bll
: mycompanyname.pl
: mycompanyname.dl
In the Menu:
Project -> Project Properties -> General
In the option of "Default Namespace", change it to whatever you want to.
--
Cheers,
Gaurav Vaish
http://mastergaurav.org
---------------------
| |
|
| Thank you all guys for the prompt response.
"Robbe Morris [C# MVP]" <info@eggheadcafe.com> wrote in message
news:O2xAGhY3FHA.1596@tk2msftngp13.phx.gbl...
> Right click the project and set the assembly name in
> the properties. It doesn't necessarily have to
> match the name space in your actual classes
> but most people do.
>
> I think the most common namespace naming
> convention is:
>
> companyname.productname.somedescriptorofassemblypurpose.dll
>
>
>
> --
> Robbe Morris - 2004/2005 Microsoft MVP C#
> http://www.masterado.net
>
>
>
>
>
> "BM" <mcbueno2k@hotmail.com> wrote in message
> news:SW89f.1211$LF3.72198@news20.bellglobal.com...
>
>
|
|
|
|