从csproj中引用xproj
本文关键字:xproj 引用 csproj | 更新日期: 2023-09-27 17:49:20
我在visual studio中添加了从csproj
到xproj
的引用。
我在参考文献中看到库和dll路径是正确的。Intelisens工作,但编译不工作,错误:
the type could not be found.
我如何把它付诸实践?
您不能直接从csproj引用xproj项目,只能反过来。
你可以做的是创建一个nuget包从xproj与dotnet pack
(或dnu pack
,如果你使用rc1
),然后安装该nuget在csproj。