4thSpace
4thSpace

Reputation: 44352

How to know if file is referenced by DLL or project?

In VS.NET 2010, how do you tell if a reference was added to a project by DLL or project?

Upvotes: 0

Views: 142

Answers (1)

Mike Christensen
Mike Christensen

Reputation: 91716

A Project Reference will contain:

<ProjectReference Include="..\Project\Foo.csproj">

A DLL reference will contain:

<Reference Include="Foo.dll">

Upvotes: 5

Related Questions