I\'m having this code in a class
private string test; public string Test { get => test; set => test = value; }
But the compi
I had the same problem. I have compared my project to another project that was OK and found this line from .csproj cause the problem.
Simply remove it and it worked and don't know why.