如何知道DLL或项目是否引用了文件?

4th*_*ace 0 .net c# visual-studio-2010

在VS.NET 2010中,如何判断DLL或项目是否将引用添加到项目中?

Mik*_*sen 5

项目参考将包含:

<ProjectReference Include="..\Project\Foo.csproj">
Run Code Online (Sandbox Code Playgroud)

DLL引用将包含:

<Reference Include="Foo.dll">
Run Code Online (Sandbox Code Playgroud)