Skip to content
This repository has been archived by the owner on Mar 23, 2024. It is now read-only.

Commit

Permalink
#27 フォーマット
Browse files Browse the repository at this point in the history
  • Loading branch information
miyaji255 committed Feb 22, 2024
1 parent 6fd5dad commit 0bd0341
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion KoeBook/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public App()
var mockOptions = context.Configuration.GetSection(nameof(MockOptions)).Get<MockOptions>();
if (mockOptions.ISoundGenerationSelectorService.HasValue && mockOptions.ISoundGenerationSelectorService.Value)
services.AddSingleton<ISoundGenerationSelectorService, SoundGenerationSelectorServiceMock>();
if(mockOptions.ISoundGenerationService.HasValue && mockOptions.ISoundGenerationService.Value)
if (mockOptions.ISoundGenerationService.HasValue && mockOptions.ISoundGenerationService.Value)
services.AddSingleton<ISoundGenerationService, SoundGenerationServiceMock>();
})
.Build();
Expand Down

0 comments on commit 0bd0341

Please sign in to comment.