Skip to content

Commit

Permalink
Rename
Browse files Browse the repository at this point in the history
  • Loading branch information
erri120 committed Aug 14, 2023
1 parent 41daf2a commit 864b751
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
namespace NexusMods.Games.FOMOD.UI;

[UsedImplicitly]
public sealed class UiOptionSelector : IGuidedInstaller, IDisposable
public sealed class GuidedInstallerUi : IGuidedInstaller, IDisposable
{
private readonly IServiceProvider _serviceProvider;

private IServiceScope? _currentScope;
private IGuidedInstallerWindowViewModel? _windowViewModel;

public UiOptionSelector(IServiceProvider serviceProvider)
public GuidedInstallerUi(IServiceProvider serviceProvider)
{
_serviceProvider = serviceProvider;
}
Expand Down
2 changes: 1 addition & 1 deletion src/Games/NexusMods.Games.FOMOD.UI/Services.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public static class Services
public static IServiceCollection AddFomodInstallerUi(this IServiceCollection serviceCollection)
{
return serviceCollection
.AddTransient<IGuidedInstaller, UiOptionSelector>()
.AddTransient<IGuidedInstaller, GuidedInstallerUi>()
.AddViewModel<GuidedInstallerStepViewModel, IGuidedInstallerStepViewModel>()
.AddViewModel<GuidedInstallerWindowViewModel, IGuidedInstallerWindowViewModel>();
}
Expand Down

0 comments on commit 864b751

Please sign in to comment.