How to force Visual Studio to reference local Enterprise Library DLL file instead of installed dir file

前端 未结 2 1922
我在风中等你
我在风中等你 2021-01-23 16:21

I\'ve got a asp.net project that references Enterprise Library DLL\'s. I can build and deploy my project but the deployment build fails because it can\'t find the DLL\'s. I pe

2条回答
  •  南笙
    南笙 (楼主)
    2021-01-23 17:05

    Okay, I had to dig into the .proj files. Under are tags. You can add within the Reference tags to direct the project to a specific DLL instance.

    
      
        ..\lib\Microsoft.Practices.EnterpriseLibrary.Common.dll
      
      ...
    

提交回复
热议问题