PP:How to ensure "Only Compiled code" will be released

P

prabhupr

Hi Folks

I have a ASP.NET 2.0 (C#) project, in which I have few ASPX/cs files.
When I compile the project, it generates the assemblies

Does this mean, when I release the files to TEST, I have to give the CS
file along with ASPX files ot just ASXP, CONFIG, dll file should be
good enough for the APP to work.
 
G

Guest

To deploy your 2005 solution you can:

- create a web setup project
- distribute your source (.cs and .aspx, etc)
- Precompile your website by using menu Build->Publish website

Because I personally don't like to publish my .cs files on the webserver I
prefer the last solution.

In ASP.NET 1.1 you could just copy the .aspx, .asmx and the dll's for
deployment, but in ASP.NET 2.0 your website project will not be compiled to a
dll (or multiple), only if you precompile your website.
 

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