Compiler error with error code -1073741819

We are getting lower errors. And this requires a server reboot every time.

The compiler failed with error code -1073741819. 

In addition, ASP.Net works fine - ONLY ASP.Net MVC applications do not work.

Any idea?

+6
source share
4 answers

My error code was -5324627661 , working with Visual Studio 2015 and IIS Express, after editing the site.css site, when the project was debugged and did not exit with restart only (windows).

After rebooting, I deleted the project files (.dll, .config, .pdb) from bin and rebuilt the project. This solved the error.

+6
source

Removing the bin and obj folders and recompiling the solution solved for me.

+3
source

I had the same error, I was going to pull my hair out for this problem, tried all the approaches mentioned in Stackoverflow and other sources, none of them worked. Finally, I realized that the problem was from my web.config file . I published a local web.config file on the server.

I copied another web.config server file from another identical server (which worked well) and the problem is resolved and life became beautiful again!

I can confidently say that something is wrong with your web.config file

+3
source

My error code was 532462766 . Just delete all the files in the bin folder and Rebuild will fix your problem.

0
source

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


All Articles