VB.net 设置问题

发布于 2024-08-08 18:02:53 字数 174 浏览 2 评论 0原文

在为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

贪恋 2024-08-15 18:02:53

这是 IDE 组件不相互通信的典型案例。

  • 一个组件表示“您在代码中引用了 msado15.dll,因此我应该将其包含在项目中”。
  • 一个不相关的组件显示“msado15.dll 在我的受保护 DLL 列表中,因此我应该警告您不要包含它”。
  • 然而,没有任何组件像人类一样思考并说“等等,这个 DLL 是框架的一部分,因此我应该默默地从安装程序中删除它”。

最后一部分由您自己完成。

This is a classic case of IDE components not talking to each other.

  • One component says "you reference msado15.dll in your code, therefore I should include it in the project".
  • An unrelated component says "msado15.dll is on my list of protected DLLs, therefore I should warn you not to include it".
  • However, no component thinks like a human and says "hang on, this DLL is part of the framework, therefore I should silently remove it from the installer".

It's up to you to do the last part yourself.

贪了杯 2024-08-15 18:02:53

这意味着该文件通常已经在操作系统上,因此不需要安装它。如果您在应用程序卸载中删除了用户原始受保护的文件,则可能会导致用户计算机出现问题。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文