Невозможно откатить CefSharp.WinForms.NETCore.C#

Место общения программистов C#
Anonymous
Невозможно откатить CefSharp.WinForms.NETCore.

Сообщение Anonymous »

Я пытаюсь откатить свое решение C# Winforms .slnx, чтобы определить, какая проверка репозитория привела к несвязанной ошибке. Когда я возвращаюсь к версии, которая работала 6 недель назад, приложение вылетает при запуске, минуя мой UnhandledExceptionHandler. Когда я откатываюсь, я получаю сообщение «Это решение содержит пакеты с уязвимостями...» (которое я получал, когда оно работало нормально, и именно поэтому я в первую очередь обновился). Единственная информация о сбое, которую показывает Visual Studio: «Программа '[38596] PixEmail.exe' завершила работу с кодом 2147483651 (0x80000003).»
Отредактировав вручную файлы .csproj версии со сбоем, я определил, что сбой вызван
понижением версии: "
"
to: "
"
В журналах Cef показаны некоторые ошибки, но журналы рабочих и сбойных версий похоже:
Рабочая версия:

Код: Выделить всё

ERROR:ui\gl\egl_util.cc:92] EGL Driver message (Error) eglCreateContext: Requested version is not supported
ERROR:ui\gl\gl_context_egl.cc:337] eglCreateContext ES 3.0 failed with error EGL_BAD_ATTRIBUTE
ERROR:ui\gl\egl_util.cc:92] EGL Driver message (Error) eglCreateContext: Requested version is not supported
ERROR:ui\gl\gl_context_egl.cc:337] eglCreateContext ES 3.0 failed with error EGL_BAD_ATTRIBUTE
ERROR:ui\gl\egl_util.cc:92] EGL Driver message (Error) eglCreateContext: Requested version is not supported
ERROR:ui\gl\gl_context_egl.cc:337] eglCreateContext ES 3.0 failed with error EGL_BAD_ATTRIBUTE
WARNING:ui\gl\direct_composition_support.cc:1182] IDCompositionTexture is not supported without fences.
WARNING:chrome\browser\signin\account_consistency_mode_manager.cc:74] Desktop Identity Consistency cannot be enabled as no OAuth client ID and client secret have been configured.
WARNING:chrome\browser\media\router\discovery\discovery_network_list_win.cc:228] Failed to open WLAN handle: The service has not been started. (0x426)
Сбой версии:

Код: Выделить всё

ERROR:ui\gl\egl_util.cc:92] EGL Driver message (Error) eglCreateContext: Requested version is not supported
ERROR:ui\gl\gl_context_egl.cc:337] eglCreateContext ES 3.0 failed with error EGL_BAD_ATTRIBUTE
ERROR:ui\gl\egl_util.cc:92] EGL Driver message (Error) eglCreateContext: Requested version is not supported
ERROR:ui\gl\gl_context_egl.cc:337] eglCreateContext ES 3.0 failed with error EGL_BAD_ATTRIBUTE
ERROR:ui\gl\egl_util.cc:92] EGL Driver message (Error) eglCreateContext: Requested version is not supported
ERROR:ui\gl\gl_context_egl.cc:337] eglCreateContext ES 3.0 failed with error EGL_BAD_ATTRIBUTE
WARNING:ui\gl\direct_composition_support.cc:1182] IDCompositionTexture is not supported without fences.
WARNING:chrome\browser\signin\account_consistency_mode_manager.cc:74] Desktop Identity Consistency cannot be enabled as no OAuth client ID and client secret have been configured.
WARNING:chrome\browser\media\router\discovery\discovery_network_list_win.cc:228] Failed to open WLAN handle: The service has not been started. (0x426)
Почему мое приложение, которое нормально работало в Visual Studio 6 недель назад, теперь выходит из строя, и как мне снова запустить устаревшие версии?
Кстати, меня не волнуют сообщения об уязвимостях. Я снижаю скорость в изолированной среде, чтобы диагностировать несвязанную проблему.

Вернуться в «C#»