Radzen adds empty property - unable to compile

I made something wrong now I'm unable to compile.

I made some crazzy loops adding and deleting a global property. Now i cannot compile anymore in Radzen.
If I check the error in Visual Studio it adds in GlobalsService.cs a methode with no name:


  public partial class GlobalsService
    {
        public event Action<PropertyChangedEventArgs> PropertyChanged;


        string _;
        public string 
        {
            get
            {
                return _;
            }
            set
            {
                if(!object.Equals(_, value))
                {
                    var args = new PropertyChangedEventArgs(){ Name = "", NewValue = value, OldValue = _, IsGlobal = true };
                    _ = value;
                    PropertyChanged?.Invoke(args);
                }
            }
        }

If I delete this section in Visual Studio I can compile. Visual Studio stores the GlobalsSevice.cs. When I open Radzen then Radzen adds this section again and I cannot compile.

What and where I have to delete something that Radzen does no longer add this Global empty property

Thx!
Claus

You can check if you have a Set property action without Name specified.