feat: GSS2.Test - UI+DI, Vulkan render test

This commit is contained in:
2026-01-22 08:04:04 +03:00
parent 2ce8d3e966
commit 5af1c508f5
23 changed files with 1093 additions and 131 deletions
+19
View File
@@ -0,0 +1,19 @@
using Microsoft.EntityFrameworkCore;
using Microsoft.IdentityModel.Protocols.Configuration;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using GSS2.Core.Hardware;
using GSS2.Core.Analysis.AmineContent.Database;
namespace GSS2.Test;
public static class DependencyInjectionHelper
{
public static IServiceCollection AddUi(this IServiceCollection services) =>
services
.AddTransient<CameraView>()
.AddTransient<CameraViewModel>()
.AddTransient<MainWindowViewModel>();
}