未找到 Microsoft.Win32.TaskScheduler - 我想在 VB.NET 中导入此命名空间
我一直在研究与 Windows 任务计划程序接口的示例代码,其中大多数都导入命名空间:
Microsoft.Win32.TaskScheduler
当我导入它时,它不在 Win32
中。
有谁知道为什么我无法导入它?我假设某些东西在我的机器上没有正确注册,但我不知道如何修复它。
仅供记录,我可以启动附件下的计划任务组件。我正在使用 VS 2008 (VB.Net) 和 Windows XP Professional。
I've been looking at sample code for interfacing with the Windows Task Scheduler, and most of them import the namespace:
Microsoft.Win32.TaskScheduler
When I go to import it, it's not there within Win32
.
Does anyone know why I can't import it? I'm assuming that something isn't registered correctly on my machine, but I can't figure out how to fix it.
Just for the record, I can start the Scheduled Task component under Accessories. I'm using VS 2008 (VB.Net) with Windows XP Professional.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的项目中,您需要添加对
Microsoft.Win32.TaskScheduler.dll
的引用,该引用是 codeplex 下载。[通常的位置是创建一个文件夹作为外部库源树的一部分并从那里进行引用。]
更新:当前的做法是使用 NuGet 来管理依赖项:https://www.nuget.org/packages/TaskScheduler/
In your project, you need to add a reference to the
Microsoft.Win32.TaskScheduler.dll
that was part of the codeplex download.[The usual place is to create a folder as part of your source tree for external Libs and reference from there.]
Update: Current practice would be to use NuGet to manage a dependency: https://www.nuget.org/packages/TaskScheduler/