Most of the stuff I put up here is in the interests of knowledge sharing but every so often I stick stuff up here just so that I'll be able to find it later. Mainly because its easier to search the blog than OWA.
Here's such a case. If you want to automate the deployment of your custom tasks and components when you build them then put one of the follwing into the post-build event of your project:
"$(DevEnvDir)..\..\SDK\v2.0\Bin\gacutil.exe" /if "$(TargetPath)"
copy "$(TargetPath)" "c:\Program Files\Microsoft SQL Server\90\DTS\Tasks"
"$(DevEnvDir)..\..\SDK\v2.0\Bin\gacutil.exe" /if "$(TargetPath)"
copy "$(TargetPath)" "c:\Program Files\Microsoft SQL Server\90\DTS\PipelineComponents"
Simple but effective!
-Jamie