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
UNDONE 是我设置中的一个标志。 TODO 也不起作用
有什么想法吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我可以确认,对于 VS2010 中的我和 fs 项目中的 fs 文件来说,它不起作用。
布莱恩或托马斯< /a> 将能够给出明确的答案,但我怀疑这是他们没有在 F#/VS 工具集中编码的事情之一。
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.