/// <inheritdoc />
        protected SentrySMAPluginBase(
            DebuggerAttachStrategy debuggerAttachStrategy = DebuggerAttachStrategy.Never)
            : base(debuggerAttachStrategy)
        {
            var pluginType = typeof(TPlugin);
            // ReSharper disable once VirtualMemberCallInConstructor
            var releaseName = $"{Name}@{pluginType.GetAssemblyVersion()}";

            _sentry = SentryEx.Initialize(releaseName);
        }
 /// <inheritdoc />
 protected SentrySMAPluginBase(
     DebuggerAttachStrategy debuggerAttachStrategy = DebuggerAttachStrategy.Never)
     : base(debuggerAttachStrategy)
 {
     _sentry = SentryEx.Initialize();
 }