compiling an ASP.NET web project with the command line compiler

S

Scott Vercuski

Everyone,

Does anyone know how to compile an ASP.NET web project using just
the command line compiler? I've tried numerous options and can't seem
to come up with the right solution. Is there a way to capture what
options are being used when I select the build option from Visual
Studio .NET 2003?

Thank you in advance for any help.

Scott Vercuski
(e-mail address removed)
 
M

Murat KARATUTLU

In fact, I have never tried such a compilation method :)
but as a matter of fact, all the *.cs files in your ASP.net project are just
valid C# codes.
and again just like any other applications (console or library), you have
some referenced libraries such as System.Web for ASP.net

so putting it all together, running the compiler with the right references
(you should know 'em) and for all .cs files (not one by one of course) shoud
have been enough???

It's not important for the compiler, if the project is a web project or
console.....

;)
 

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

Top