splatto
splatto

Reputation: 3217

Deploy asp.net application without compiling DLL

When I publish any type of asp.net application, my code is precompiled into various assemblies. I would like to avoid this so that I can upload an aspx page and its corresponding codebehind file. I understand the benefits of doing it either way, but what is desired here is the least risky way to publish changes.

How does one properly deploy an asp.net project without compiling assemblies?

Is the process different for each model (web app, MVC..)

Upvotes: 4

Views: 6234

Answers (1)

Ely
Ely

Reputation: 3240

Sounds like you have a Web Application Project, and what you want is a Website Project. With website projects, you can modify the aspx and codebehind files and not have to worry about recompliling them, asp.net will do that for you. Web Application Projects need to be compiled for every code change.

Upvotes: 3

Related Questions