From 7f2f6cd95a9f8ce3979e0d788e95350edd440d4e Mon Sep 17 00:00:00 2001
From: Glenn Watson <5834289+glennawatson@users.noreply.github.com>
Date: Fri, 8 Jul 2022 14:06:09 +1000
Subject: [PATCH] fix: verify.xunit
Update dependencies
---
src/Directory.build.props | 2 +-
.../ReactiveUI.Blazor.csproj | 2 +-
...provalTests.ReactiveUI.Net4_7.verified.txt | 1019 +++++++++++++++++
...iApprovalTests.Testing.Net4_7.verified.txt | 46 +
...ApiApprovalTests.Blend.Net4_7.verified.txt | 23 +
...ApprovalTests.Winforms.Net4_7.verified.txt | 109 ++
6 files changed, 1199 insertions(+), 2 deletions(-)
create mode 100644 src/ReactiveUI.Tests/API/ApiApprovalTests.ReactiveUI.Net4_7.verified.txt
create mode 100644 src/ReactiveUI.Tests/API/ApiApprovalTests.Testing.Net4_7.verified.txt
create mode 100644 src/ReactiveUI.Tests/Platforms/windows-xaml/Api/XamlApiApprovalTests.Blend.Net4_7.verified.txt
create mode 100644 src/ReactiveUI.Tests/Platforms/winforms/API/WinformsApiApprovalTests.Winforms.Net4_7.verified.txt
diff --git a/src/Directory.build.props b/src/Directory.build.props
index 73fd84c9ea..e2520b8afd 100644
--- a/src/Directory.build.props
+++ b/src/Directory.build.props
@@ -52,7 +52,7 @@
-
+
diff --git a/src/ReactiveUI.Blazor/ReactiveUI.Blazor.csproj b/src/ReactiveUI.Blazor/ReactiveUI.Blazor.csproj
index f884c70d76..d44d9fa030 100644
--- a/src/ReactiveUI.Blazor/ReactiveUI.Blazor.csproj
+++ b/src/ReactiveUI.Blazor/ReactiveUI.Blazor.csproj
@@ -14,7 +14,7 @@
-
+
diff --git a/src/ReactiveUI.Tests/API/ApiApprovalTests.ReactiveUI.Net4_7.verified.txt b/src/ReactiveUI.Tests/API/ApiApprovalTests.ReactiveUI.Net4_7.verified.txt
new file mode 100644
index 0000000000..592f1af806
--- /dev/null
+++ b/src/ReactiveUI.Tests/API/ApiApprovalTests.ReactiveUI.Net4_7.verified.txt
@@ -0,0 +1,1019 @@
+[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("ReactiveUI.AndroidSupport")]
+[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("ReactiveUI.AndroidX")]
+[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("ReactiveUI.Blazor")]
+[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("ReactiveUI.Drawing")]
+[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("ReactiveUI.Maui")]
+[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("ReactiveUI.TestRunner.Android")]
+[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("ReactiveUI.Tests")]
+[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("ReactiveUI.Uno")]
+[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("ReactiveUI.Uno.WinUI")]
+[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("ReactiveUI.Uwp")]
+[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("ReactiveUI.WinUI")]
+[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("ReactiveUI.Winforms")]
+[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("ReactiveUI.Wpf")]
+[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("ReactiveUI.XamForms")]
+[assembly: System.Runtime.Versioning.TargetFramework(".NETFramework,Version=v4.7.2", FrameworkDisplayName=".NET Framework 4.7.2")]
+namespace ReactiveUI
+{
+ public static class AutoPersistHelper
+ {
+ public static System.IDisposable ActOnEveryObject(this System.Collections.ObjectModel.ObservableCollection @this, System.Action onAdd, System.Action onRemove)
+ where TItem : ReactiveUI.IReactiveObject { }
+ public static System.IDisposable ActOnEveryObject(this System.Collections.ObjectModel.ReadOnlyObservableCollection @this, System.Action onAdd, System.Action onRemove)
+ where TItem : ReactiveUI.IReactiveObject { }
+ public static System.IDisposable ActOnEveryObject(this System.IObservable> @this, System.Action onAdd, System.Action onRemove)
+ where TItem : ReactiveUI.IReactiveObject { }
+ public static System.IDisposable ActOnEveryObject(this TCollection collection, System.Action onAdd, System.Action onRemove)
+ where TItem : ReactiveUI.IReactiveObject
+ where TCollection : System.Collections.Specialized.INotifyCollectionChanged, System.Collections.Generic.IEnumerable { }
+ public static System.IDisposable AutoPersist(this T @this, System.Func> doPersist, System.TimeSpan? interval = default)
+ where T : ReactiveUI.IReactiveObject { }
+ public static System.IDisposable AutoPersist(this T @this, System.Func> doPersist, System.IObservable manualSaveSignal, System.TimeSpan? interval = default)
+ where T : ReactiveUI.IReactiveObject { }
+ public static System.IDisposable AutoPersistCollection(this System.Collections.ObjectModel.ObservableCollection @this, System.Func> doPersist, System.TimeSpan? interval = default)
+ where TItem : ReactiveUI.IReactiveObject { }
+ public static System.IDisposable AutoPersistCollection(this System.Collections.ObjectModel.ObservableCollection @this, System.Func> doPersist, System.IObservable manualSaveSignal, System.TimeSpan? interval = default)
+ where TItem : ReactiveUI.IReactiveObject { }
+ public static System.IDisposable AutoPersistCollection(this System.Collections.ObjectModel.ReadOnlyObservableCollection @this, System.Func> doPersist, System.IObservable manualSaveSignal, System.TimeSpan? interval = default)
+ where TItem : ReactiveUI.IReactiveObject { }
+ public static System.IDisposable AutoPersistCollection(this TCollection @this, System.Func> doPersist, System.IObservable manualSaveSignal, System.TimeSpan? interval = default)
+ where TItem : ReactiveUI.IReactiveObject
+ where TCollection : System.Collections.Specialized.INotifyCollectionChanged, System.Collections.Generic.IEnumerable { }
+ }
+ public enum BindingDirection
+ {
+ OneWay = 0,
+ TwoWay = 1,
+ AsyncOneWay = 2,
+ }
+ public class ByteToStringTypeConverter : ReactiveUI.IBindingTypeConverter, Splat.IEnableLogger
+ {
+ public ByteToStringTypeConverter() { }
+ public int GetAffinityForObjects(System.Type fromType, System.Type toType) { }
+ public bool TryConvert(object? from, System.Type toType, object? conversionHint, out object result) { }
+ }
+ public class CanActivateViewFetcher : ReactiveUI.IActivationForViewFetcher
+ {
+ public CanActivateViewFetcher() { }
+ public System.IObservable GetActivationForView(ReactiveUI.IActivatableView view) { }
+ public int GetAffinityForView(System.Type view) { }
+ }
+ public static class ChangeSetMixin
+ {
+ public static System.IObservable CountChanged(this System.IObservable changeSet) { }
+ public static System.IObservable> CountChanged(this System.IObservable> changeSet) { }
+ public static bool HasCountChanged(this DynamicData.IChangeSet changeSet) { }
+ }
+ public class CombinedReactiveCommand : ReactiveUI.ReactiveCommandBase>
+ {
+ protected CombinedReactiveCommand(System.Collections.Generic.IEnumerable> childCommands, System.IObservable canExecute, System.Reactive.Concurrency.IScheduler? outputScheduler = null) { }
+ public override System.IObservable CanExecute { get; }
+ public override System.IObservable IsExecuting { get; }
+ public override System.IObservable ThrownExceptions { get; }
+ protected override void Dispose(bool disposing) { }
+ public override System.IObservable> Execute() { }
+ public override System.IObservable> Execute(TParam parameter) { }
+ public override System.IDisposable Subscribe(System.IObserver> observer) { }
+ }
+ public static class CommandBinder
+ {
+ public static ReactiveUI.IReactiveBinding BindCommand(this TView view, TViewModel? viewModel, System.Linq.Expressions.Expression> propertyName, System.Linq.Expressions.Expression> controlName, string? toEvent = null)
+ where TView : class, ReactiveUI.IViewFor
+ where TViewModel : class
+ where TProp : System.Windows.Input.ICommand { }
+ public static ReactiveUI.IReactiveBinding BindCommand(this TView view, TViewModel? viewModel, System.Linq.Expressions.Expression> propertyName, System.Linq.Expressions.Expression> controlName, System.IObservable withParameter, string? toEvent = null)
+ where TView : class, ReactiveUI.IViewFor
+ where TViewModel : class
+ where TProp : System.Windows.Input.ICommand { }
+ public static ReactiveUI.IReactiveBinding BindCommand(this TView view, TViewModel? viewModel, System.Linq.Expressions.Expression> propertyName, System.Linq.Expressions.Expression> controlName, System.Linq.Expressions.Expression> withParameter, string? toEvent = null)
+ where TView : class, ReactiveUI.IViewFor
+ where TViewModel : class
+ where TProp : System.Windows.Input.ICommand { }
+ }
+ public class CommandBinderImplementation : Splat.IEnableLogger
+ {
+ public CommandBinderImplementation() { }
+ public ReactiveUI.IReactiveBinding BindCommand(TViewModel? viewModel, TView view, System.Linq.Expressions.Expression> vmProperty, System.Linq.Expressions.Expression> controlProperty, System.IObservable withParameter, string? toEvent = null)
+ where TView : class, ReactiveUI.IViewFor
+ where TViewModel : class
+ where TProp : System.Windows.Input.ICommand { }
+ public ReactiveUI.IReactiveBinding BindCommand(TViewModel? viewModel, TView view, System.Linq.Expressions.Expression> vmProperty, System.Linq.Expressions.Expression> controlProperty, System.Linq.Expressions.Expression> withParameter, string? toEvent = null)
+ where TView : class, ReactiveUI.IViewFor
+ where TViewModel : class
+ where TProp : System.Windows.Input.ICommand { }
+ }
+ public static class ComparerChainingExtensions
+ {
+ public static System.Collections.Generic.IComparer ThenBy(this System.Collections.Generic.IComparer? parent, System.Func selector) { }
+ public static System.Collections.Generic.IComparer ThenBy(this System.Collections.Generic.IComparer? parent, System.Func selector, System.Collections.Generic.IComparer comparer) { }
+ public static System.Collections.Generic.IComparer ThenByDescending(this System.Collections.Generic.IComparer? parent, System.Func selector) { }
+ public static System.Collections.Generic.IComparer ThenByDescending(this System.Collections.Generic.IComparer? parent, System.Func selector, System.Collections.Generic.IComparer comparer) { }
+ }
+ public class ComponentModelTypeConverter : ReactiveUI.IBindingTypeConverter, Splat.IEnableLogger
+ {
+ public ComponentModelTypeConverter() { }
+ public int GetAffinityForObjects(System.Type fromType, System.Type toType) { }
+ public bool TryConvert(object? from, System.Type toType, object? conversionHint, out object? result) { }
+ }
+ public class CreatesCommandBindingViaCommandParameter : ReactiveUI.ICreatesCommandBinding
+ {
+ public CreatesCommandBindingViaCommandParameter() { }
+ public System.IDisposable? BindCommandToObject(System.Windows.Input.ICommand? command, object? target, System.IObservable