Is there a way in a visual studio database project to exclude certain object during deployment? -


I have a scenario where I use the Visual Studio 2010 database project to implement changes in multiple database installations. But I want to throw out a set of ideas from the copy on some people. Is there any way to use build configurations to separate these scenes from being deployed?

Have you tried to make a composite project? I have not applied this scenario to myself, but it seems that you can do this:

  1. Create Project 1, in which all the essential objects needed for deployment are included.
  2. Create Project 2, in which the group of sequences required for some deployment.
  3. Add a reference to Project 1 in Project 2. Thus, when Project 1 is deployed, ideas will not be included and during project 2 deployment, as well as core objects will be included.

    Take a look at the following Microsoft links.

section specifically titled "Use and Limitations of Composite Projects"

Comments

Popular posts from this blog

Eclipse CDT variable colors in editor -

AJAX doesn't send POST query -

wpf - Custom Message Box Advice -