I have a post build event that combines my JavaScript files and outputs to Production.js, however if Production.js is not checked out, the build fails.
Is it possible to automatically check Production.js out when a project is built?
[Edit]
If possible using a post-build event, does anyone know how to do this? I am using Visual Studio 2008.
I think the simplest solution is to have a post-build step which checks out the Production.js file.
Setting options like automatic checkout of files won’t work here because Visual Studio will only automatically check out files for actions it considers edits. It doesn’t understand your post / pre build steps and hence won’t do a check out.