ASP.Net 网站安装程序参考
对于网站项目类型,我的网站 - 属性页 - 引用选项卡中的所有 dll 是否默认复制到 .msi istaller 中? 这些引用似乎没有像 Web 应用程序或桌面应用程序项目类型(例如复制本地等)中那样的任何选项。 我的安装程序包括我的网站项目中的内容文件,并且我在解决方案中作为项目引用的任何类库都显示在输出列表中。 但是,我手动添加为引用的任何系统或第 3 方 dll 都不会显示在此列表中。 它们会被编译到安装程序中吗?
Are all the dll's in my Website - Property Pages - References tab copied into an .msi istaller by default for a Website project type? The references don't seem to have any options as they would in a web app or desktop app project type (such as Copy Local, etc). My installer includes the Content Files from my website project, and any class libraries I have referenced as projects in my solution are all showing up in the Output list. But, any system or 3rd party dll's that I have manually added as references do not show up in this list. Will they be compiled into the installer?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以添加 Web 安装部署项目。 这将检查依赖关系,您可以选择将它们添加到 .MSI 安装程序中。
编辑 顺便说一下,这是一个 MVC 项目。 我必须说我不确定网站项目是否属于这种情况,我经常使用 XCopy 部署这些项目
You can add a Web Setup deployment project. That will check dependencies and you can choose to add them to the .MSI installer.
edit This is on a MVC project by the way. I must say i'm not sure if that's the case with Website projects, I often deployed those using XCopy