Replies: 1 comment 3 replies
-
Not much support. Well thanks anyway. |
Beta Was this translation helpful? Give feedback.
3 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.
-
Is there an existing issue for this?
CefSharp Version
124.3.80
Operating System
Windows 10
Architecture
x64
.Net Version
7.0
Implementation
WinForms
Reproduction Steps
using CefSharp;
using CefSharp.WinForms;
namespace cefsharp
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
InitializeChromium();
}
}
using CefSharp.WinForms;
using System.Runtime.ConstrainedExecution;
using CefSharp;
using CefSharp.WinForms;
namespace cefsharp
{
internal static class Program
{
///
/// The main entry point for the application.
///
[STAThread]
static void Main()
{
// Set up CefSharp settings
CefSettings settings = new CefSettings();
// Initialize CefSharp with the provided settings
Cef.Initialize(settings);
}
Expected behavior
I wanted a working web browser. CefSharp just does not work in Visual Studio anymore.
Actual behavior
Does not run or compile.
Regression?
I tried on version 7.0 and version 8.0
Known Workarounds
None found
Does this problem also occur in the CEF Sample Application
Yes using WPF/OffScreen command line args
Other information
using CefSharp;
using CefSharp.WinForms;
namespace cefsharp
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
InitializeChromium();
}
}
Beta Was this translation helpful? Give feedback.
All reactions