Question

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?

Was it helpful?

Solution

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.

OTHER TIPS

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#.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top