To support an installation on IIS 7, I added the following to my web.config:
<system.webServer>
<staticContent>
<mimeMap fileExtension=".mp4" mimeType="video/mp4" />
</staticContent>
</system.webServer>
This worked fine in IIS7 (and express) as .mp4 wasn't included by default. Now that I'm trying to run the solution under VS2012 with IIS8 Express, no static content is served, and instead I have an error that the <staticContent> is invalid as there's already a mimeMap for .mp4.
How can I correct this while still keep the mapping for IIS7 installations? I'd rather not need a new project configuration if I can help it.
EDIT: This is actually a problem in VS2010 now, since it looks like IIS8 Express completely replaces IIS7 Express.