I've been using the excellent ssrsmsbuildtasks for a couple years to automate ssrs report/folder/datasource deployment. Thumbs up.
On the current gig they have 'loose' image files that need to be deployed to the reports folder. Looks like the AddResource task should do this but I get the following error:
Reporting error UploadResource: The method or operation is not implemented.
I've posted to the codeplex project (not very active) here and directly to Steve Wright's blog here, but I have little sense of delayed gratification.
I'm using the following msbuild script to try and upload the file:
<Target Name="AddResources" DependsOnTargets="GetServerUrl">
<AddResource ReportServerURL="$(TargetServerUrl)" Folder="$(TargetReportFolder)" Files="c:\temp\CHSLogo.gif" />
</Target>
I looked at the sources and AddResource task is calling CreateCatalogItem (ItemType "Resource") on the ReportService2010.asmx API. I don't know enough about the ssrs api to know if this is what I'm looking for.
Even if you don't get an answer... I hope to raise awareness regarding ssrsmsbuildtasks as they are a great way to automate report deployment!
/jhd