.NET Format Style Fixes

This commit is contained in:
clodanSPT
2025-07-20 19:04:02 +00:00
committed by Format Bot
parent 9584d171f0
commit 2af0891c66
3 changed files with 34 additions and 8 deletions
+5 -1
View File
@@ -28,7 +28,11 @@ public class DI
var diHandler = new DependencyInjectionHandler(services);
diHandler.AddInjectableTypesFromTypeAssembly(typeof(App));
diHandler.AddInjectableTypesFromTypeList([typeof(MockLogger<>)/* TODO: this needs to be enabled but the randomizer needs to NOT be random, typeof(MockRandomUtil)*/]);
diHandler.AddInjectableTypesFromTypeList(
[
typeof(MockLogger<>), /* TODO: this needs to be enabled but the randomizer needs to NOT be random, typeof(MockRandomUtil)*/
]
);
diHandler.InjectAll();