I have a solution with 20 projects. One of the projects is a
webservice project. I can successfully build the entire solution, including the
webservice project, using the <solution> task with a webmaps element.
However, though the webservice project builds, it isn’t deployed to the
virtual directory specified in the webmaps. So is there any way to get it
deployed to the virtual directory? Am I missing something obvious? Here’s
what my solution task looks like: <solution
configuration="${solution.config.production}"
includevsfolders="true"
outputdir="${folders.project.releases.new.build}"
solutionfile="${folders.project.releases.new.source}\${solution}.sln"
verbose="True"> <assemblyfolders> <include
name="${folders.project.hintpath}" /> </assemblyfolders> <!--WebMap
of URL's to project references. --> <webmap> <map
path="${folders.project.releases.new.source}\WebServices\LocalCache\LocalCache.vbproj"
url="" /> </webmap> </solution> Gary McCullough |