如何使用一键发布和 Visual Studio 将程序集添加到远程服务器的 GAC
我正在使用 Visual Studio 的一键发布和 Web 部署将我的 .net MVC 应用程序发布到远程服务器。这非常有效。现在我想将其中一个程序集安装到远程服务器的 GAC 中。
如何使用 Web 部署和一键发布来执行此操作?
I'm using Visual Studio's one-click publish and web deploy to publish my .net MVC application to a remote server. This works very well. Now I'd like to have one of the assemblies installed into the GAC of the remote server.
How do I do this using web deploy and one-click publish?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ClickOnce 应用程序无法安装除自身之外的任何内容。 VS 在 bootstrapper setup.exe 中创建的所有先决条件实际上并不是 ClickOnce。它只是一个引导程序。
A ClickOnce-app can't install anything except itself. All prerequisites which VS creates inside bootstrapper setup.exe isn't actually ClickOnce. It just a bootstrapper.