Reputation: 44352
In VS.NET 2010, how do you tell if a reference was added to a project by DLL or project?
Upvotes: 0
Views: 142
Reputation: 91716
A Project Reference will contain:
<ProjectReference Include="..\Project\Foo.csproj">
A DLL reference will contain:
<Reference Include="Foo.dll">
Upvotes: 5