How to fix “No way to resolve conflict between” error?

后端 未结 4 602
-上瘾入骨i
-上瘾入骨i 2021-02-06 21:35

Recently added log4net.dll to our data object. Our data object builds perfectly but when you try to build anything that references our data object you get the following error: <

4条回答
  •  一向
    一向 (楼主)
    2021-02-06 22:01

    Open your project file (.csproj in C# or .vbproj in VB.NET) for editing.

    Make sure the log4net reference is Fully Qualified Type Name, has HintPath and SpecificVersion=True.

    
      ..\references\log4net.dll
      True
     
    

    Save the file and try to rebuild.

提交回复
热议问题