Closed YiehraiS closed 1 year ago
Could you add support of NET452. I understand that it is old version but some developers are still using it because of compatibility. E.g., I've done it for my local version of fork. There will be a little changes like:
#if NET452 return Task.FromResult(0); #else return Task.CompletedTask; #endif
and
#if !NET452 var pixelsPerDip = VisualTreeHelper.GetDpi(this).PixelsPerDip; #endif
Thanks in advance!
.NET Framework versions before 4.6.2 will not be supported.
Could you add support of NET452. I understand that it is old version but some developers are still using it because of compatibility. E.g., I've done it for my local version of fork. There will be a little changes like:
and
Thanks in advance!