Pls tell me how to compile in commandlie ?

  • Thread starter Thread starter Raghu Raman
  • Start date Start date
R

Raghu Raman

Hi ,

i want to compile my asp.net app from the commandline window.could you
please tell me how.


With thanks
Drop in the ocean.
 
You just need to compile your app with the command line C# compiler
("csc.exe") as an assembly.
Use "/target:library" option.

Lionel.
 
Dear Lionel,

thanks for that.

could u pls give an example for that.Let us assume that i have my webapp
in d:\Raghu\t1.sln.

could u pls tell me , how can i compile my c#soulution from the
commandline(DOS) prompt.

Thanks & Regards
Raghu
 
devenv /build "d:\Raghu\t1.sln"


-- bruce (sqlwork.com)




|
|
| Dear Lionel,
|
| thanks for that.
|
| could u pls give an example for that.Let us assume that i have my webapp
| in d:\Raghu\t1.sln.
|
| could u pls tell me , how can i compile my c#soulution from the
| commandline(DOS) prompt.
|
| Thanks & Regards
| Raghu
|
|
| Don't just participate in USENET...get rewarded for it!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top