meds
meds

Reputation: 22956

Add reference and com directory to visual studio?

Visual Studio recently forgot my SQL Server CE SDK installs (they're still there and I tried doing a re-install).

I was just wondering is it possible to add a directory for visual studio to look in for references? Sort of like in C++ how you can have include directories.

Upvotes: 2

Views: 242

Answers (1)

Jeremy Thompson
Jeremy Thompson

Reputation: 65672

You can specify a directory for visual studio to look for references:

Add Reference Search Path Dialog Box

"Use this dialog box to specify an additional directory path that the project system will search to resolve references to DLLs, assemblies, or modules in your application."

Upvotes: 1

Related Questions