Visual Studio 2010 (devenv.exe) OutOfMemory exception when installing the installer for a project

I am using Win 7 64bit edition and I am working on a C # project. This project has a large database (1.85gb), which makes it a large project. When I try to create an installer for this project, when building it gives me an "OutOfMemory" exception. The problem is probably that memory is available for a process that is 2 GB in windows. So what should I do to fix this problem?

+4
source share
1 answer

For Win 7 64-bit,

* Take a backup of devenv.exe file, and then follow these steps:

  • Open a Visual Studio command prompt and navigate to C: \ Program Files \ Microsoft Visual Studio 9 \ Common7 \ IDE.

  • Then run editbin / LARGEADDRESSAWARE devenv.exe .

To resolve this issue in VS2010, read the post VS 2010 IDE 2GB limit . Hope this helps

+1
source

Source: https://habr.com/ru/post/1383490/


All Articles