Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to prevent Visual Studio 2010 adding large SQL file to my project in C++?

I am developing a project in Visual studio 2010 in c++ and c# .till when I added c++ project in solution I always see a SQL Server Compact Edition Database (.sdb) File.It always annoying me

Please anyone help me how to stop creation of this file ?

like image 339
Abhishek Avatar asked Dec 26 '11 11:12

Abhishek


People also ask

How do I reduce the size of my Visual Studio?

View > Appearance > Zoom In (Ctrl+=) - increase the Zoom level. View > Appearance > Zoom Out (Ctrl+-) - decrease the Zoom level. Source - https://code.visualstudio.com/docs/editor/acces... There are links to non-Microsoft websites.

Can I open Visual Studio 2015 project in 2022?

The user can open the project in Visual Studio 2015, Visual Studio 2017, Visual Studio 2019, or Visual Studio 2022, and the resource information is used for each as long as Visual Studio supports projects and solutions being used across both versions.

Is Visual Studio backwards compatible?

Right now, we are supporting three versions of Visual Studio: 2015, 2017 and 2019. The older versions appear to have components that are vulnerable and need to be upgraded or removed and Microsoft is not supporting or releasing updates for those components.


1 Answers

Well, if my guess that you mean sdf and not sdb file is right, you can disable it in "Tools" -> "Options" -> "Text Editor" -> "C/C++" -> "Advanced" -> "Disable Database"

However you will most likely lose the IntelliSense functionality (I can't test it right now). If you don't want this file to be created in the project structure but you wouldn't mind it being somewhere else, you can set the fallback location in the advanced settings mentioned above and set "Always Use Fallback Location" to True.

like image 160
stativ Avatar answered Nov 14 '22 23:11

stativ