You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Remove obsolete FilterOnProperty and update dependencies
Removed the obsolete FilterOnProperty extension and related tests. Updated .NET workflow to support .NET 10 and improved caching. Upgraded package dependencies in Directory.Build.props and test project. Updated copyright years.
* Update build configs and remove obsolete files
Updated GitHub Actions workflows to use 'windows-latest' and setup-dotnet@v5.0.1. Changed test project to use Microsoft.NET.Sdk instead of MSBuild.Sdk.Extras and removed global.json and ObsoleteEx.cs. Also updated the solution file for Visual Studio 18 and made minor adjustments to target frameworks and using directives.
* Clean up target framework property groups
Removed obsolete MonoAndroid debug settings and redundant netcoreapp property groups from build files. Added support for net10 target framework in Directory.Build.targets.
* Refactor target framework defines and remove UWP check
Consolidated target framework property groups in Directory.Build.targets to simplify conditional defines. Removed the WINDOWS_UWP preprocessor check from EnumerableEx.cs, making ToHashSet available for all platforms.
<PropertyGroupCondition="$(TargetFramework.StartsWith('netstandard')) or $(TargetFramework.StartsWith('net6')) or $(TargetFramework.StartsWith('net7')) or $(TargetFramework.StartsWith('net8')) or $(TargetFramework.StartsWith('net9')) or $(TargetFramework.StartsWith('net10'))">
protected virtual void SetAndRaise<T>(ref T backingField, T newValue, [System.Runtime.CompilerServices.CallerMemberName] string? propertyName = null) { }
311
311
protected virtual void SetAndRaise<T>(ref T backingField, T newValue, System.Collections.Generic.IEqualityComparer<T>? comparer, [System.Runtime.CompilerServices.CallerMemberName] string? propertyName = null) { }
312
-
[System.Obsolete("This never worked properly in the first place")]
313
-
public System.IDisposable SuspendNotifications(bool invokePropertyChangeEventWhenDisposed = true) { }
314
312
}
315
313
public class BindingListAdaptor<[System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembers(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.All)] T> : DynamicData.IChangeSetAdaptor<T>
0 commit comments