The short answer is no - nothing in the v1.7 tools or project type that includes Windows Azure Storage content as one of its elements. I do see the appeal though, in a dev environment. For production systems, I feel that automated tools are more appropriate.
Not that this is the answer you were looking for, but... There's a way you can automate storage upload, though. You can take advantage of PowerShell, combined with your automation tool of choice (whether you're using TFS/MSBuild 100% or mixing in Team City, CruiseControl.net or something else).
The REST API already covers storage management (including the ability to upload block and page blobs). The PowerShell cmdlets make this very easy to upload blob content, and this lets you decide when to execute the script (along with deployment, before deployment, as an update later, etc.).
One more thing to consider: Static content can be enormous in size. You may want to avoid a total upload, and focus on individual objects. Some of the partners I've worked with have hundreds of MB of static content (and several have GBs). Not very practical for pushing this content in one big batch. The PowerShell cmdlets help in these cases.