I want to make an MSBuild script that:
- can be "built" or "rebuilt" or "cleaned" or "started" by Visual Studio like a normal project
- doesn't actually compile anything
- runs some custom tasks (arbitrary to the question)
- supports Visual Studio firing up IIS Express and the debugger when "started"
I can create a nearly empty web application project and add pre/post-build tasks. However, I'd like to skip the unnecessary compilation steps altogether.
Does anyone know how to accomplish this?