assembly

  • Thread starter Thread starter Ricardo
  • Start date Start date
R

Ricardo

is there a method to do assemblies with visual
studio .net or i need to build a makefile all by myself???
 
Ricardo,

You shouldn't have to create a makefile. I am not sure which versions
of VS.NET do not have the projects for class libraries in them, but if yours
doesn't support that project type, you can always use the command line
compiler with the switch "/target:library" which will produce a DLL instead
of an EXE.

Hope this helps.
 
Hi..

What I want is to create am application where all my classes are in
different files after the project is build. So I can update those files when
I develop better classes and not have to update it all.

Thanks, and sorry for my English... ( I'm brazilian).

Nicholas Paldino said:
Ricardo,

You shouldn't have to create a makefile. I am not sure which versions
of VS.NET do not have the projects for class libraries in them, but if yours
doesn't support that project type, you can always use the command line
compiler with the switch "/target:library" which will produce a DLL instead
of an EXE.

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Ricardo said:
is there a method to do assemblies with visual
studio .net or i need to build a makefile all by myself???
 
Back
Top