Where to place the dll files to resolve the reference

人盡茶涼 提交于 2019-12-11 05:09:29

问题


I have a dotnet project codebase without documentation. To build, there are batch files available. When I open the .sln file in VS, there are reference errors, which can be cleared by modifying .csproj file and updating

<Reference Include="MyLibrary.module, version=1.0.1, Culture=neutral, PublicKeyToken=randomstring" />

with

<Reference Include="MyLibrary.module, version=1.0.1, Culture=neutral, PublicKeyToken=randomstring">
<HintPath>path-to-dll-here</HintPath>
</Reference>

But rather then taking that path, I want to know, in which location, I can place necessary Referenced dll files such that those get resolved automatically.

I am getting MSB3245 warning and CS0246 errors.

Using VS 2013 on Win 10.

来源:https://stackoverflow.com/questions/45945579/where-to-place-the-dll-files-to-resolve-the-reference

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