2

好的,VS中的“任务列表”听起来很棒。但我不能让它工作。(我正在使用 VS2010 shell,以及 VS2010 正确的,并且不能使其在任何一个中工作。如果重要的话,语言是 F#)

我的代码中有这样的东西:

let expStatus = ref AwaitingResult 

member takecontrol () =     
             assert (!expStatus<>NoneSubmitted); //UNDONE: This might be possible, and indeed legal, if it happens should wait for cancelation to happen then to hand over
             assert (!expStatus<>BeingWorkedOn); //UNDONE: This might be possible, and indeed legal, if it happens should wait for cancelation to happen then to hand over
             //startThread "run" <| 
             this.RunExp () //Get to work    

UNDONE 是我设置中的标志。TODO 也不起作用

有任何想法吗?

4

2 回答 2

5

我可以确认,对于我在 VS2010 和 fs 项目中的 fs 文件,它不起作用。

BrianTomas将能够给出一个明确的答案,但我怀疑这是他们在 F#/VS 工具集中没有得到全面编码的事情之一。

于 2011-05-25T05:57:57.110 回答
0

任务列表仅包含属于项目的文件中的项目(将源文件放在解决方案文件夹中无效)。

在 VS2010 Professional,C# 中测试。

于 2011-05-25T05:27:41.477 回答