Visual studio Solution for two versions of a web application
Posted
by Nikos Steiakakis
on Stack Overflow
See other posts from Stack Overflow
or by Nikos Steiakakis
Published on 2010-04-09T11:50:35Z
Indexed on
2010/04/09
11:53 UTC
Read the original article
Hit count: 457
The issue at hand is this.
We have a web application with two different versions, a full application, and a light version of it. In it's most part the light version is a subset of the full version, which means that it uses the same web pages and references the same binaries with the full version.
However, some of the pages of the full version should not be deployed with the light version obviously, and some binaries (libraries etc) need not be deployed with the full version.
If it were a windows forms application we could attempt to approach the issue at hand with preprocessor directives, unfortunately this is not feasible I think. (please do correct me if I'm wrong with this)
Anyway, what would a good approach on this? Thanks
© Stack Overflow or respective owner