i have a question about Post-Builds. We have a Post-Build in project settings. This Post-Build task compress JavaScript because of Web Application performance. Assembly path is assigned by variable $(YUICompressorDLLPath).

Generally it works fine from developer machine but how should I do it from TFS Team Build. When I start the Team Build it ends with error because the assembly is on the build machine on other place as on developer machine. I tried overwrite the variable over MSBuild Arguments but it seems it doesn't work.

What is the best practice, how is to accomplish this?

Regards

Anton Kalcik

link|improve this question

50% accept rate
feedback

2 Answers

It seems that you should change $(YUICompressorDLLPath) $(OutDir)\$(TargetFileName)

link|improve this answer
I don't think it will be helpful in my situation. The referenced assemblies are in other place in TFS and the path is relative one. – AKa Feb 6 '11 at 21:18
feedback
up vote 0 down vote accepted

The best practice, on my opinion is to keep the directory structure on build server same as on developer machine. On this way is working everything fine, because of relative paths. For more information to see how to ensure generated file will be deployed see also: Deploy generated files in TFS Build Server

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.