ASP.NET deployment - How to share BIN across multiple WebApp Projects?

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-01 00:38:58

Yes, actually, you do want to deploy them individually. That's how it works.

If this truly offends you, then consider whether this common code should be in a WCF service called by all those sites.

Another option is to make your .Net code smart enough so that it can load the correct HTML front end based on the URL. That way you could deploy your code to one location, then have multiple virtual directories use the same code.

You could possibly try putting them in a common folder location and then change the assembly probing paths to look in that location.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!