-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dd1e6b3
commit 45a92af
Showing
15 changed files
with
117 additions
and
1,295 deletions.
There are no files selected for viewing
33 changes: 33 additions & 0 deletions
33
src/ReactiveUI.Fody.Tests/API/ApiApprovalTests.ReactiveUIFody.DotNet6_0.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("ReactiveUI.AndroidSupport")] | ||
[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("ReactiveUI.Tests")] | ||
[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(".NETCoreApp,Version=v6.0", FrameworkDisplayName=".NET 6.0")] | ||
namespace ReactiveUI.Fody.Helpers | ||
{ | ||
[System.AttributeUsage(System.AttributeTargets.Method | System.AttributeTargets.Property)] | ||
public sealed class ObservableAsPropertyAttribute : System.Attribute | ||
{ | ||
public ObservableAsPropertyAttribute() { } | ||
} | ||
public static class ObservableAsPropertyExtensions | ||
{ | ||
public static ReactiveUI.ObservableAsPropertyHelper<TRet> ToPropertyEx<TObj, TRet>(this System.IObservable<TRet> item, TObj source, System.Linq.Expressions.Expression<System.Func<TObj, TRet>> property, bool deferSubscription = false, System.Reactive.Concurrency.IScheduler? scheduler = null) | ||
where TObj : ReactiveUI.ReactiveObject { } | ||
public static ReactiveUI.ObservableAsPropertyHelper<TRet> ToPropertyEx<TObj, TRet>(this System.IObservable<TRet> item, TObj source, System.Linq.Expressions.Expression<System.Func<TObj, TRet>> property, TRet initialValue, bool deferSubscription = false, System.Reactive.Concurrency.IScheduler? scheduler = null) | ||
where TObj : ReactiveUI.ReactiveObject { } | ||
} | ||
[System.AttributeUsage(System.AttributeTargets.Property)] | ||
public sealed class ReactiveAttribute : System.Attribute | ||
{ | ||
public ReactiveAttribute() { } | ||
} | ||
[System.AttributeUsage(System.AttributeTargets.Property)] | ||
public sealed class ReactiveDependencyAttribute : System.Attribute | ||
{ | ||
public ReactiveDependencyAttribute(string targetName) { } | ||
public string Target { get; } | ||
public string? TargetProperty { get; set; } | ||
} | ||
} |
33 changes: 33 additions & 0 deletions
33
src/ReactiveUI.Fody.Tests/API/ApiApprovalTests.ReactiveUIFody.Net4_7.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("ReactiveUI.AndroidSupport")] | ||
[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("ReactiveUI.Tests")] | ||
[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.Fody.Helpers | ||
{ | ||
[System.AttributeUsage(System.AttributeTargets.Method | System.AttributeTargets.Property)] | ||
public sealed class ObservableAsPropertyAttribute : System.Attribute | ||
{ | ||
public ObservableAsPropertyAttribute() { } | ||
} | ||
public static class ObservableAsPropertyExtensions | ||
{ | ||
public static ReactiveUI.ObservableAsPropertyHelper<TRet> ToPropertyEx<TObj, TRet>(this System.IObservable<TRet> item, TObj source, System.Linq.Expressions.Expression<System.Func<TObj, TRet>> property, bool deferSubscription = false, System.Reactive.Concurrency.IScheduler? scheduler = null) | ||
where TObj : ReactiveUI.ReactiveObject { } | ||
public static ReactiveUI.ObservableAsPropertyHelper<TRet> ToPropertyEx<TObj, TRet>(this System.IObservable<TRet> item, TObj source, System.Linq.Expressions.Expression<System.Func<TObj, TRet>> property, TRet initialValue, bool deferSubscription = false, System.Reactive.Concurrency.IScheduler? scheduler = null) | ||
where TObj : ReactiveUI.ReactiveObject { } | ||
} | ||
[System.AttributeUsage(System.AttributeTargets.Property)] | ||
public sealed class ReactiveAttribute : System.Attribute | ||
{ | ||
public ReactiveAttribute() { } | ||
} | ||
[System.AttributeUsage(System.AttributeTargets.Property)] | ||
public sealed class ReactiveDependencyAttribute : System.Attribute | ||
{ | ||
public ReactiveDependencyAttribute(string targetName) { } | ||
public string Target { get; } | ||
public string? TargetProperty { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.