files required in web page folder

  • Thread starter Thread starter RichGK
  • Start date Start date
R

RichGK

Can someone tell me what files are actually required in a production folder
to be able to use a web application?

At the moment all my classes etc .cs files are in there.

Thanks,
Rich.
 
All you will need is the ASPX files, any HTML files, XML files or other
resources,
and the DLL.
The C# code files you can remove.
 
Dennis Myrén said:
All you will need is the ASPX files, any HTML files, XML files or other
resources,
and the DLL.
The C# code files you can remove.

Thankyou both.

Rich.
 
Sorry , i do not understand, you saying he can not?

You know, the code is compiled into Intermediate code and put in an
executable,
in this case a DLL.
Source codes is definitely not needed to execute that.
 
Dennis,

You wrote it that implicitly, "remove" that somebody can in my idea read
"from his development environment".

This remove can in my opinion only be when you first copy your files to a
seperated webserver and than remove what is not needed.

Another approach is only to place that what is needed on the webserver.

Sorry for making the confusion.

Cor
 
No worries Cor,

;)

Hehehe, yes i would agree that RichGK should not remove his source codes
entirely for each and every build, because that might slow down the
development process :) .

Take care.
 
Back
Top