Razor Class Library – Deploy to common location on server
I have built an .NET Core MVC app and a Razor Class Library that contains several areas of functionality. The Razor Class Library will be shared among several parent apps. In VS, the parent app has a project reference to the RCL. When deployed to the server, I want the parent app to reference the RCL from a common location and not have the dll in it’s own root folder.
The RCL is deployed to a common location on the server. How do I configure the publish of the parent app to NOT copy the RCL DLL locally, but to use the one already on the server?