In Visual Studio there are several "Setup and Deployment" projects, one of these is "CAB Project".
But I actually want a simple "ZIP Project" which enables me to add some folders + dll's from my solution and package this all in a zip file for easy distribution on the web.
Is there such a project type ?
When I want to create this by myself, what resources and references should I use to build this ?
Edit
@Cheeso
I created a dummy 'class library' project which has dependencies on all the sub projects.
In this dummy project I used the post-build event to zip the dll's using 7-zip.
But I was hoping that there was a better solution for this.