English 中文(简体)
F#网络项目
原标题:Web Project for F#
  • 时间:2010-01-15 20:39:19
  •  标签:
  • f#
  • vsx

我正在与F#中撰写的管制人员一道,建立视频演播室MVC网络项目系统。 它沿高原冷却。 我可以建造和操作这些仪器,但我对FSharp语言服务有问题。

在编辑中,它显示的是yn色化和诊断。 有一个问题——它没有提及项目。 即便在建房期间,该项目还是成功建造,但在其屏幕上显示,参照的集会/项目没有解决的物体/名称。

如果在座的一些人对融入F#语言服务有所了解,请帮助我工作。

针对Tomas:

F#控制器的代码已经放在项目档案中,正如我已经提到的那样,我可以汇编和管理。 最初,我们把“F#”编码保留在一个单独的项目中,希望消除这一额外复杂性,正是导致这个项目的原因。 它不是一个协会。 http://bistroframework.org”rel=“nofollow noreferer” 。

<><>Edit>/strong>

图瓦卢皇家骑士团现在以

最佳回答

您能更详细描述一下你做了些什么? 这是一种“fl”或新的项目系统吗? 项目环境的其他方面是否得到采纳? 例如,如果你有F#代码,则

#if DEBUG
let x = 3
#else
let x = 4
#endif

当你将VS解决办法从Debug改为释放时,有色变?

(如果能够将F#语言服务充分纳入用户界定的项目系统,我不敢肯定;如果你想更多地讨论的话,你可以电子邮箱:fsbugs@microsoft.com和Ill对该系统作出答复。)

问题回答

你们是否把你的F#源代码作为网络项目的一部分? 我不敢肯定,甚至有可能让协会参加。 NET MVC,但可在ASP中查阅。 NET WebForms。 有了网上投标项目,它做了大量的工作(因为F#了解项目情况)。 我认为,以这样的黑客号来解决这一问题:

#if EDITING
#r "Your.Referenced.Library.dll"
#endif

这只能作为编辑的指南...... 然而,在单独的F#项目中写F#控制器的想法(如果可能的话)要好得多。 在这种情况下,你就没有任何问题(至少我希望!)





相关问题
F#: Storing and mapping a list of functions

I have a number of events that happen in a game. I want to control the time and order at which these events occur. For example: Event 1: Show some text on screen for N frames & play a sound ...

Creating Silverlight 3 applications with F#

Is there an easy way to create Silverlight 3 applications with F# (October CTP)? I have seen the F# for Silverlight, but that only works with the May CTP. I am using Visual Studio Integrated Shell ...

How To Change List of Chars To String?

In F# I want to transform a list of chars into a string. Consider the following code: let lChars = [ a ; b ; c ] If I simply do lChars.ToString, I get "[ a ; b ; c ]". I m trying to get "abc". I ...

Unzipping ZLIB compressed portions of a binary file

I m reading a file(a flash swf) from .Net 3.5 that has a header which states whether the body of the file/Stream is compressed or not. However, I m having problems-after I rewrap the basic File ...

Pretty print a tree

Let s say I have a binary tree data structure defined as follows type a tree = | Node of a tree * a * a tree | Nil I have an instance of a tree as follows: let x = Node (Node (...

F# String Pattern-Matching with Wildcards

As part of a project I have assigned myself as a way of improving my knowledge of F# and functional programming in general, I am attempting to write a string pattern-matching algorithm from scratch ...

热门标签