diff --git a/LibMatrix.DebugDataValidationApi/Controllers/ValidationController.cs b/LibMatrix.DebugDataValidationApi/Controllers/ValidationController.cs
deleted file mode 100644
index 4dbee54..0000000
--- a/LibMatrix.DebugDataValidationApi/Controllers/ValidationController.cs
+++ /dev/null
@@ -1,26 +0,0 @@
-using System.Text.Json;
-using LibMatrix.Extensions;
-using Microsoft.AspNetCore.Mvc;
-
-namespace LibMatrix.DebugDataValidationApi.Controllers;
-
-[ApiController]
-[Route("/")]
-public class ValidationController : ControllerBase {
- private readonly ILogger<ValidationController> _logger;
-
- public ValidationController(ILogger<ValidationController> logger) {
- _logger = logger;
- }
-
- [HttpPost("/validate/{type}")]
- public Task<bool> Get([FromRoute] string type, [FromBody] JsonElement content) {
- var t = Type.GetType(type);
- if (t is null) {
- Console.WriteLine($"Type `{type}` does not exist!");
- throw new ArgumentException($"Unknown type {type}!");
- }
- Console.WriteLine($"Validating {type}...");
- return Task.FromResult(content.FindExtraJsonElementFields(t, "$"));
- }
-}
diff --git a/LibMatrix.DebugDataValidationApi/LibMatrix.DebugDataValidationApi.csproj b/LibMatrix.DebugDataValidationApi/LibMatrix.DebugDataValidationApi.csproj
deleted file mode 100644
index 205ff68..0000000
--- a/LibMatrix.DebugDataValidationApi/LibMatrix.DebugDataValidationApi.csproj
+++ /dev/null
@@ -1,19 +0,0 @@
-<Project Sdk="Microsoft.NET.Sdk.Web">
-
- <PropertyGroup>
- <TargetFramework>net7.0</TargetFramework>
- <Nullable>enable</Nullable>
- <ImplicitUsings>enable</ImplicitUsings>
- <InvariantGlobalization>true</InvariantGlobalization>
- </PropertyGroup>
-
- <ItemGroup>
- <PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="7.0.10" />
- <PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
- </ItemGroup>
-
- <ItemGroup>
- <ProjectReference Include="..\LibMatrix\LibMatrix.csproj" />
- </ItemGroup>
-
-</Project>
diff --git a/LibMatrix.DebugDataValidationApi/Program.cs b/LibMatrix.DebugDataValidationApi/Program.cs
deleted file mode 100644
index cf9dc55..0000000
--- a/LibMatrix.DebugDataValidationApi/Program.cs
+++ /dev/null
@@ -1,32 +0,0 @@
-var builder = WebApplication.CreateBuilder(args);
-
-// Add services to the container.
-
-builder.Services.AddControllers();
-// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
-builder.Services.AddEndpointsApiExplorer();
-builder.Services.AddSwaggerGen();
-builder.Services.AddCors(options =>
-{
- options.AddPolicy(
- "Open",
- policy => policy.AllowAnyOrigin().AllowAnyHeader());
-});
-
-var app = builder.Build();
-
-// Configure the HTTP request pipeline.
-if (app.Environment.IsDevelopment()) {
- app.UseSwagger();
- app.UseSwaggerUI();
-}
-
-// app.UseHttpsRedirection();
-
-app.UseCors("Open");
-
-app.UseAuthorization();
-
-app.MapControllers();
-
-app.Run();
diff --git a/LibMatrix.DebugDataValidationApi/Properties/launchSettings.json b/LibMatrix.DebugDataValidationApi/Properties/launchSettings.json
deleted file mode 100644
index fe668ce..0000000
--- a/LibMatrix.DebugDataValidationApi/Properties/launchSettings.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "$schema": "https://json.schemastore.org/launchsettings.json",
- "iisSettings": {
- "windowsAuthentication": false,
- "anonymousAuthentication": true,
- "iisExpress": {
- "applicationUrl": "http://localhost:9169",
- "sslPort": 44321
- }
- },
- "profiles": {
- "Development": {
- "commandName": "Project",
- "dotnetRunMessages": true,
- "launchBrowser": false,
- "launchUrl": "swagger",
- "applicationUrl": "http://localhost:5258",
- "environmentVariables": {
- "ASPNETCORE_ENVIRONMENT": "Development"
- }
- },
- "Local": {
- "commandName": "Project",
- "dotnetRunMessages": true,
- "launchBrowser": false,
- "applicationUrl": "http://localhost:5258",
- "environmentVariables": {
- "DOTNET_ENVIRONMENT": "Local"
- }
- }
- }
-}
diff --git a/LibMatrix.DebugDataValidationApi/appsettings.Development.json b/LibMatrix.DebugDataValidationApi/appsettings.Development.json
deleted file mode 100644
index 12c8ab9..0000000
--- a/LibMatrix.DebugDataValidationApi/appsettings.Development.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft.AspNetCore": "Information",
- "Microsoft.AspNetCore.Routing": "Warning",
- "Microsoft.AspNetCore.Mvc": "Warning",
- "Microsoft.AspNetCore.Cors": "Warning"
- }
- }
-}
diff --git a/LibMatrix.DebugDataValidationApi/appsettings.json b/LibMatrix.DebugDataValidationApi/appsettings.json
deleted file mode 100644
index 10f68b8..0000000
--- a/LibMatrix.DebugDataValidationApi/appsettings.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft.AspNetCore": "Warning"
- }
- },
- "AllowedHosts": "*"
-}
|