We have a solution that contains 17 projects. Solution has several configurations such as Debug, Release, Test, Publish and etc.

Also team project has several build definitions, each one is specialized for a configuration. We use Release configuration build for nightly builds and Publish configuration build for publish and deployment. So these build definitions, build same source code. But there is a problem...

Out nightly build creates obj\Release directories for each project but publish build doesn't. Because of this publish build doesn't create server publish package.

When i look to the build logs i saw the differences like below. Nightly build - Release configuration (for each project)

PrepareForBuild:
  Creating directory "obj\Release\".

Publish build - Publish configuration (for each project)

_DeploymentUnpublishable:
  Skipping unpublishable project.

But i couldn't understand why? Which flag controls this?

We are using TFS 2010, so Team Build 2010.

link|improve this question

70% accept rate
Read the rest of the log file around the "unpublishable" message to see if it tells you why the project was unpublishable. Also, maybe set the logging level to "Verbose" oto get more detail. – John Saunders Dec 28 '11 at 8:40
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.