Visual Studio tasklist

2019-07-18 12:02发布

Ok to the "Task List" in VS sounds pretty great. But I can't make it work. (I'm using VS2010 shell, and also VS2010 proper and can't make it work in either. Language is F# if that matters)

I have thing like this in my code:

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 is a flag in my settings. TODO doesn't work either

Any ideas?

2条回答
做个烂人
2楼-- · 2019-07-18 12:25

The task list contains only items from files that are part of a project (placing the source file in a solution folder has no effect).

Tested in VS2010 Professional, C#.

查看更多
淡お忘
3楼-- · 2019-07-18 12:38

I can confirm that for me in VS2010 and a fs file in an fs project, it doesn't work.

Brian or Tomas will be able to give a definitive answer, but I suspect that this is one of the things that they haven't got round to coding in the F#/VS tool set.

查看更多
登录 后发表回答