System.Data.SQLite Visual Studio 2012.NET 4.5 won't show up in data source

I am developing on a Winodws 7 x86 machine in Visual Studio 2012 using .NET 4.5. I have installed the official x86 / x64 System.Data.SQLite Nuget package for my project. But I still don't see it as an option in the Data Source \ Data Provider options in the Select Data Source dialog. I saw this answer here and it looks like this is all I need to do ( SQLite 1.0.82.0 (latest) in Visual Studio 2012 not showing up in the designer data source ) Am I missing something?

Thank!

+3


source to share


2 answers


This package worked for me.

Obviously

"This installer is capable of installing design-time components for Visual Studio 2012."



means

"This installation package is required to install the design-time components for Visual Studio 2012."

+4


source


I just wanted to add this as a follow-up because I am having problems with the designer in VS2012 and it might help others in the future.

After several attempts to install the constructor and not see it, I ran C: \ Program Files (x86) \ Microsoft Visual Studio 11.0 \ Common7 \ IDE \ devenv.exe / setup



This will force VS to rebuild its registry based on all installed packages. It will take a couple of minutes. I was subsequently able to start VS 2012 and see the entry.

I'm curious if the installer does this command at all, or if it just runs it but doesn't wait for it to finish. At this point, the end user opens VS 2012 before the team can finish.

0


source







All Articles