我在visual中添加了从csproj到xproj的引用。
我在引用中看到了库,dll的路径是正确的。Intelisens可以工作,但编译时不存在错误:
the type could not be found. 我该怎么做呢?
发布于 2016-06-26 15:51:51
您不能直接从csproj引用xproj项目,只能反过来引用xproj项目。
您可以做的是使用dotnet pack (或者dnu pack,如果您使用rc1)从xproj创建一个nuget包,然后在csproj中安装该nuget。
https://stackoverflow.com/questions/38007890
复制相似问题