Sentry only works in the Visual Studio IDE #2111
-
Because Sentry only works in the Visual Studio IDE, when I create the release application it doesn't work, doesn't catch the generated exceptions? I'm using .Net 4.8 in VB.net, and the Sentry SDK version is 2.1.8, I downgraded from version 3.25.0 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Sentry absolutely works outside of the Visual Studio IDE. We run all our tests on Linux, Windows, and MacOS using the
That's fine. We support both VB.NET and .NET Framework 4.8. What type of application is it? (WinForms? ASP.NET? Something else?). If it's Windows Forms, please read the guide here.
You should use the current release (3.25.0). We do not provide support for older releases, and 2.1.8 is several years old. If you need further assistance, please provide some code showing how you're initializing Sentry and how you're checking for exceptions. |
Beta Was this translation helpful? Give feedback.
Sentry absolutely works outside of the Visual Studio IDE. We run all our tests on Linux, Windows, and MacOS using the
dotnet
command line interface. I personally use both VSCode and JetBrains Rider on MacOS.That's fine. We support both VB.NET and .NET Framework 4.8. What type of application is it? (WinForms? ASP.NET? Something else?). If it's Windows Forms, please read the guide here.
You should use the current release (3.25.0). We do not provide support for older releases, and 2.1.8 is several years old.
If you need further assistance, please provide some code showing how you're in…