C # Project closing Visual Studio

1

I recently did a Console Application project that saves PDF files with Report Viewer and worked normally.

I needed to change the SQL Server procedure that generates these files and I changed the directory to save these files, so far, nothing, however, the application will work normally and saving the files until it terminates suddenly and still closes the Visual Studio (2013) with no apparent error or exception.

This application is famous for using a lot of RAM, about 1.5GB of RAM, for saving reports with a high degree of complexity. Maybe the process manager is shutting down the Visual Studio process, but I'm not sure how to stop it.

Thanks to anyone who can help.

    
asked by anonymous 12.12.2017 / 19:33

1 answer

0

I've been through something similar, in my case it was an extension that was doing it.

First of all I would check the application, if it has unhandled exceptions, memory leak among others .. but if it is running perfectly on the client it can be rather a problem in your IDE / Environment.

Disable all extensions, eg Reshaper, OZCode, Codemaid etc .. especially those that load components for Debug (OzCode type) helps a lot but ends up weighing and may be a reason your IDE has problems.

Make VisualStudio updates and the operating system.

If it is possible to migrate to a newer version of VisualStudio and test it.

    
13.12.2017 / 10:48