安装 .NET 客户端配置文件并自动运行
大家好 : 我开发了一个WPF Windows应用程序,我想从CD运行它,那么有什么方法可以让自动运行CD来安装.NET框架然后运行该应用程序。
Hi All :
I develop an WPF windows application and i want to run it from the cd , so is there any way to make autorun cd to install .NET framework then run the application.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 Visual Studio(如果您有 Professional 或更高版本)创建安装程序这将确保安装适当的框架版本(以及任何其他依赖项)(并在最后可选择启动应用程序)。
然后您可以创建一个自动运行文件来启动此安装程序。
You can use Visual Studio (if you have Professional or better) to create an installer that will ensure the appropriate framework version (and any other dependencies) is installed (and at the end optionally launch the application).
Then you can create an autorun file that will start this installer.
您还可以使用 ClickOnce。这在 Visual Studio Express 版本中可用。
.NET Framework 等先决条件由 ClickOnce 引导程序安装。
在项目的属性部分中的“发布->选项->部署”下,选中“对于 CD 安装,插入 CD 时自动启动安装程序”。因此,您只需将生成的文件复制到 CD 上即可。
You can also use ClickOnce. This is available in the Express versions of Visual Studio.
The prerequisites, like the .NET Framework, are installed by the ClickOnce bootstrapper.
In the properties section of your project under 'Publish->Options->Deployment' check the 'For CD installations, automatically start Setup when CD is inserted'. So you just need to copy the generated files onto your cd.