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?
 
Back
Top