Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Last active August 29, 2015 14:27
Show Gist options
  • Save dcomartin/0395e48a955092a7980d to your computer and use it in GitHub Desktop.
Save dcomartin/0395e48a955092a7980d to your computer and use it in GitHub Desktop.
CustomContentTypeProvider
public class CustomContentTypeProvider : FileExtensionContentTypeProvider
{
public CustomContentTypeProvider()
{
Mappings.Add(".json", "application/json");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment