Command compile Web app.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi All,

If I wanted to compile my Web application via the command line, what else besides the "codebehind" .cs files do I have to add in my single file assembly compilation?

i.e. - csc /out:af.dll /t:library (what else must go here besides the codebehind files?)

btw is this comand correct?
Thanks
Kevin
 
Kevin,

I recall hearing about some utility that would do this for you, but I
don't think that it is available yet (I think it is part of the .NET 2.0
release). To do this now, you have to navigate to every page, so that the
derived classes get compiled correctly.

Hope this helps.


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

Kevin said:
Hi All,

If I wanted to compile my Web application via the command line, what else
besides the "codebehind" .cs files do I have to add in my single file
assembly compilation?
 

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