Im trying to write a simple F# ASP.Net MVC app
Ive added the Global.asax as follows
<%@ Application Inherits="WebApplication.Core.Global" Language="F#" %>
then in a separate referenced assembly I have
namespace WebApplication.Core with a type Global() = etc
Getting a 'F#' is not a supported language.
Am I not able to do this?
Thanks
You need to add something like below in web.config:
Source and more details: http://codebetter.com/matthewpodwysocki/2008/10/07/asp-net-mvc-with-nhaml-f-edition/