Stupid .cs question

  • Thread starter Thread starter Ron Weldy
  • Start date Start date
R

Ron Weldy

I read that you don't need .cs files to deploy but I suppose if you are
trying to reconstruct someone's work, you will need these files. Is that
correct?
 
That is correct.

Just like if you develop a windows application you will only distribute
the resulting .exe file, but if you want to do further work on the
application you will need the source code (.cs files).

When you compile an asp.net application the source code (.cs files) are
compiled into one or more .dlls - which you will need to deploy.
Regards,

Peter Chadwick (MCP)
(e-mail address removed)
 
Man, that was a stupid question. :-) Actually, the only stupid question is
the one that is never asked, so never self-depricate over a question you do
not have an answer to.

When you compile a web application, you no longer need to deploy your source
code. This is the same as a desktop application. In the 2.0 Framework, even
the tagged part of your code can be compiled and exempt from deployment (due
to the concept of partial classes, which is implemented in Code Beside).

To maintain an application, however, you either a) need the source code (the
..cs files) or b) need to decompile the assemblies to get source code (meaning
you need the source code).


---

Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

***************************
Think Outside the Box!
***************************
 
Back
Top