Skip to content

Commit f771bd8

Browse files
authored
Dependency: update Uno to 4.0.9 (#3079)
* Dependency: update Uno to 4.0.7 * Update ReactiveUI.Uno.WinUI.csproj * Update ReactiveUI.Uno.csproj
1 parent 5628ffb commit f771bd8

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

src/ReactiveUI.Uno.WinUI/ReactiveUI.Uno.WinUI.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
</ItemGroup>
2828

2929
<ItemGroup>
30-
<PackageReference Include="Uno.WinUI" Version="3.10.11" />
30+
<PackageReference Include="Uno.WinUI" Version="4.0.9" />
3131
</ItemGroup>
3232

3333
<ItemGroup Condition=" $(TargetFramework.StartsWith('netstandard')) ">

src/ReactiveUI.Uno/ActivationForViewFetcher.cs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,8 @@ public IObservable<bool> GetActivationForView(IActivatableView view)
3838
}
3939

4040
#pragma warning disable SA1114 // Parameter list after.
41-
#if NETSTANDARD
42-
var viewLoaded = Observable.FromEvent<RoutedEventHandler, bool>(
43-
#else
44-
var viewLoaded = Observable.FromEvent<TypedEventHandler<DependencyObject, object>, bool>(
45-
#endif
41+
var viewLoaded = Observable.FromEvent<TypedEventHandler<FrameworkElement, object>, bool>(
42+
4643
eventHandler => (_, _) => eventHandler(true),
4744
x => fe.Loading += x,
4845
x => fe.Loading -= x);

src/ReactiveUI.Uno/ReactiveUI.Uno.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
</ItemGroup>
2929

3030
<ItemGroup Condition=" !$(TargetFramework.StartsWith('uap')) ">
31-
<PackageReference Include="Uno.UI" Version="3.10.11" />
31+
<PackageReference Include="Uno.UI" Version="4.0.9" />
3232
</ItemGroup>
3333

3434
<ItemGroup Condition=" $(TargetFramework.StartsWith('netstandard')) ">

0 commit comments

Comments
 (0)