为什么 .NET Framework 先决条件不能从安装文件的同一位置运行?

发布于 2024-12-05 02:18:38 字数 191 浏览 0 评论 0原文

我已经在 C# 中创建了一个安装项目,并选择了 dot net Framework 3.5 作为先决条件,并设置了选项“从与我的应用程序相同的位置下载”。但是,虽然当我运行 Setup.msi 时它假定从本地运行,但它会通过互联网安装 .NET Framework 3.5。

有人可以告诉我为什么吗?

I have created a setup project in c# and i had choose dot net framework 3.5 as it's prerequisites and i set the option "Download from the same location as my application". But while it assumed to be run from local when i run the Setup.msi it goes through the internet to install the .NET Framework 3.5.

Could anybody please tell me WHY?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

纵情客 2024-12-12 02:18:39

来自应用程序部署先决条件(已添加强调):

... Visual Studio 生成一个名为Setup.exe 的Windows 可执行程序,也称为引导程序。 引导程序负责在应用程序运行之前安装这些先决条件

msi 文件只是 Windows 安装程序数据库,无法执行引导操作。

From Application Deployment Prerequisites (emphasis added):

... Visual Studio generates a Windows executable program named Setup.exe, also known as a bootstrapper. The bootstrapper is responsible for installing these prerequisites before your application runs.

The msi file is just a windows installer database, and isn't capable of performing bootstrapping actions.

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