GPU process exited unexpectedly #4400
deanmaoataristocrat
started this conversation in
General
Replies: 3 comments 3 replies
This comment has been hidden.
This comment has been hidden.
-
@amaitland sorry to ping you, do you have any idea about above errors? thanks |
Beta Was this translation helpful? Give feedback.
2 replies
-
ok, I finally fixed it reliably. I used net6 version. however somehow, it just won't work, I had to force it with older version by adding a dependency json file. Just in case anyone else facing the same issue: {
"runtimeTarget": {
"name": ".NETCoreApp,Version=v3.1",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v3.1": {
"CefSharp.BrowserSubprocess/1.0.0": {
"dependencies": {
"CefSharp": "1.0.0",
"CefSharp.BrowserSubprocess.Core.netcore": "1.0.0"
},
"runtime": {
"CefSharp.BrowserSubprocess.dll": {}
}
},
"System.Text.Json/5.0.0": {
"runtime": {
"lib/netcoreapp3.0/System.Text.Json.dll": {
"assemblyVersion": "5.0.0.0",
"fileVersion": "5.0.20.51904"
}
}
},
"CefSharp/1.0.0": {
"dependencies": {
"System.Text.Json": "5.0.0"
},
"runtime": {
"CefSharp.dll": {}
}
},
"CefSharp.BrowserSubprocess.Core.netcore/1.0.0": {
"dependencies": {
"CefSharp": "1.0.0"
},
"runtime": {
"CefSharp.BrowserSubprocess.Core.dll": {}
}
}
}
},
"libraries": {
"CefSharp.BrowserSubprocess/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"System.Text.Json/5.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-+luxMQNZ2WqeffBU7Ml6njIvxc8169NW2oU+ygNudXQGZiarjE7DOtN7bILiQjTZjkmwwRZGTtLzmdrSI/Ustw==",
"path": "system.text.json/5.0.0",
"hashPath": "system.text.json.5.0.0.nupkg.sha512"
},
"CefSharp/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"CefSharp.BrowserSubprocess.Core.netcore/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
What exactl is this issue about? I did everything I could, and still got this exception. Can anyone please help? Tried all different settings as well. The simple example worked fine.
we are embeding cef in a WPF app.
Environment:
Here is the code snip
App.manifest file
csproj files have following nuget packages:
and some other propertities:
Also, gone through all required files as in the below link, all files are in bin folder.
https://github.com/cefsharp/CefSharp/wiki/Output-files-description-table-%28Redistribution%29
Beta Was this translation helpful? Give feedback.
All reactions