views:

66

answers:

0

In our VS Web Application project, we have a post-build task that concatenates and minifies our JavaScript files into a single file name "OurApplication-.js" (where is the version of the website assembly). Since it is built automatically and has a frequently changing name, it is not part of the project or in source control.

So far we have deployed via xcopy deployment, using Publish Website to get our app's files and manually adding in the JS file. I'd like to move to using a Web Setup project or something similar, but I can't find any way to get the Web Setup project to look for a file with a name that isn't known until build time. Is there a way to do this, or a better tool to use?