All apps are affected.
The program "[17256] LanguageLab.exe" has exited with code 2147958022 (0x80073d06).
The program "[19508] PopupWithFrame.exe" has exited with code 2147958022 (0x80073d06).
The usual steps such as deleting bin and obj folders do not help. This affects all projects. Even an empty project created by Visual Studio template does not run.
Everything worked well with Visual Studio 17.8.5 for quite a while until all of a sudden it did not work any more.
I work on Windows 10, Version 22H2.
After I hit this error I’ve updated to Visual Studio 17.8.7. But this did not fix the problem.
I’m wondering if this issue is a general problem.
2
Answers
This bug has gone away after installation of Visual Studio 19.9.2. Using VS 17.9.1 with a brand new installation of Visual Studio did not work but VS 17.9.2 fixed the problem. All .NET MAUI programs that I have created over the past years on my PC work again without any change. Dotnet --version displays 8.0.200. So there is no need to install SDK 8.0.201. The Windows update (KB5034763) of Windows 10 Version 22H2 was not harmful because I've re-installed it and everything is fine.
I had exactly the same problem. I added
<WindowsAppSDKSelfContained>true</WindowsAppSDKSelfContained>
to a
PropertyGroup
in the project file, it solved the issue.Of course, this has an impact on your application’s size, but at least you can continue working in Visual Studio until it gets fixed. I hope this helps!