VB.net 设置问题
在为 VB.net 应用程序创建设置时,我收到以下警告: “警告 1 'msado15.dll' 应被排除,因为其源文件 'C:\Program Files\Common Files\System\ado\msado15.dll” 受 Windows 系统文件保护。
请建议我如何克服此类问题。
谢谢,
While creating the setup for VB.net application I am getting the following warning:
"Warning 1 'msado15.dll' should be excluded because its source file 'C:\Program Files\Common Files\System\ado\msado15.dll" is under Windows System File Protection.
Please suggest me how to over come this type of issue.
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是 IDE 组件不相互通信的典型案例。
msado15.dll
,因此我应该将其包含在项目中”。msado15.dll
在我的受保护 DLL 列表中,因此我应该警告您不要包含它”。最后一部分由您自己完成。
This is a classic case of IDE components not talking to each other.
msado15.dll
in your code, therefore I should include it in the project".msado15.dll
is on my list of protected DLLs, therefore I should warn you not to include it".It's up to you to do the last part yourself.
这意味着该文件通常已经在操作系统上,因此不需要安装它。如果您在应用程序卸载中删除了用户原始受保护的文件,则可能会导致用户计算机出现问题。
That means that file is normally already on the operating system, so it should not be necessary to install it. If you remove the user's original protected file in your app uninstall, it can cause problems on the user machine.