Skip to content

Commit 69ccc9e

Browse files
committed
remove reactiveui dependency as we're using communitytoolkit anyway
1 parent 74fbc96 commit 69ccc9e

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

UI.Avalonia/Program.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using Avalonia;
2-
using Avalonia.ReactiveUI;
32
using System;
43

54
namespace UI.Avalonia;
@@ -19,6 +18,5 @@ public static AppBuilder BuildAvaloniaApp()
1918
=> AppBuilder.Configure<App>()
2019
.UsePlatformDetect()
2120
.WithInterFont()
22-
.LogToTrace()
23-
.UseReactiveUI();
21+
.LogToTrace();
2422
}

UI.Avalonia/UI.Avalonia.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@
6161
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.2.7" />
6262
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
6363
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.2.7" />
64-
<PackageReference Include="Avalonia.ReactiveUI" Version="11.2.7" />
6564
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
6665
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="6.0.0" />
6766
</ItemGroup>

0 commit comments

Comments
 (0)