Closed theCalcaholic closed 7 years ago
This is a known issue, see also https://github.com/KvanTTT/CSharp-Minifier/issues/33 and https://github.com/KvanTTT/CSharp-Minifier/issues/32. Unfortunately I have no idea how it can be resolved with NRefactory. So, I close this issue as a duplicate.
Ah okay. Still, thanks for the work!
"Compress members" breaks inheritance with protected members (parent class protected members are being renamed, child class protected (overriding) members arent).
results in:
class b{protected virtual var a(){}}class c:b{protected override var someMethod{}}