views:

16

answers:

2

After my TFS build completes, I need to run a couple of .bat files to rename/copy files so that the package is ready for a particular environmeent.

I've included these in one of my class library projects so they set to them "copy if newer", but idealy, I would like to include these in a Solution Items folder. However when I add them to the solution items folder, I can't set them to "copy if newer" so they don't end up in my build output folder.

Where do other people store these files?

A: 

Keeping them in a solution folder is a reasonable approach. You can edit the *.*proj file for your library project to copy the files you need by using the MSBuild Copy Task.

Jim Lamb
A: 

Easiest answer by far was to add a folder to some of the projects named "Deployment".

ForeverDebugging