Visual Studio任务列表

Lyn*_*ite 2 f# tasklist visual-studio-2010 visual-studio

确定在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    
Run Code Online (Sandbox Code Playgroud)

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

有任何想法吗?

Ben*_*jol 5

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

BrianTomas将能够给出一个明确的答案,但我怀疑这是他们在F#/ VS工具集中编写代码的一个原因.