从csproj引用xproj

时间:2016-06-24 07:28:25

标签: c# visual-studio asp.net-core .net-core

我在visual studio中添加了从csprojxproj的引用。

我看到引用中的库和dll的路径是正确的。 Intelisens工作,但编译无法正常运行错误:

the type could not be found. 

我该如何投入使用?

1 个答案:

答案 0 :(得分:2)

你不能直接从csproj引用xproj项目,只是相反。

您可以使用dotnet pack(或dnu pack,如果您正在使用rc1)从xproj创建一个nuget包,然后在csproj中安装该nuget。 / p>