In Visual Studio 2008, is there a way to deploy a Class Library Project without deploying the project's DLL?
Background:
I am using OpenNETCF's Padarn web server. OpenNETCF recommends that we design the Padarn web solution into three different projects -
- A project for the Padarn server
- A project for the web pages (the static content such as .aspx, html, css, etc)
- A project for the Code Behind.
It turns out that, due to how Padarn works, there is no need (that I'm aware of) to deploy the DLL of the project that contains the web pages (static content). The .aspx files are nothing much more than text files that contain an @Page directive which tells the Padarn server which Code Behind class to use to build the actual HTML content.