TarkaDaal
TarkaDaal

Reputation: 19585

Refresh SQL Server References

I have a SQL Server project in VS 2010 that references an assembly in a SQL Server 2008 database. If I drop and recreate the assembly in the database with a new version, how can I refresh Visual Studio's view of the reference, so that Intellisense picks up the changes?

Upvotes: 0

Views: 252

Answers (2)

Dumitrescu Bogdan
Dumitrescu Bogdan

Reputation: 7267

The answer might come toooo late, but for me it only worked deleting the reference and adding it again. (10 seconds operation)

Upvotes: 0

lkaradashkov
lkaradashkov

Reputation: 8899

I believe that if you follow these steps, the new version of the assembly should get picked up by VS:

  1. Build > Build Solution
  2. Build > Rebuild Solution

Hope this helps!

Upvotes: 1

Related Questions