F#的Global.asax - 语言不支持?

F#的Global.asax  - 语言不支持?

问题描述:

我试着写一个简单的F#ASP.Net MVC应用程序

Im trying to write a simple F# ASP.Net MVC app

伊夫添加在Global.asax如下:

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

获得一个F#不支持的语言。

Getting a 'F#' is not a supported language.

我不是能够做到这一点?

Am I not able to do this?

感谢

您需要添加类似下面在web.config中:

You need to add something like below in web.config:

<compiler language="F#;f#;fs;fsharp"
          extension=".fs"
          warningLevel="4"
          type="Microsoft.FSharp.Compiler.CodeDom.FSharpAspNetCodeProvider,
            FSharp.Compiler.CodeDom, Version=1.9.6.2,
            Culture=neutral,
            PublicKeyToken=a19089b1c74d0809">
  <providerOption name="CompilerVersion" value="v3.5" />
  <providerOption name="WarnAsError" value="false" />
</compiler>

来源和更多的细节:http://$c$cbetter.com/matthewpodwysocki/2008/10/07/asp-net-mvc-with-nhaml-f-edition/