From a559a7530974569716919c6b5df424342c602b52 Mon Sep 17 00:00:00 2001 From: Linwenxuan05 Date: Sat, 8 Jul 2023 01:44:16 +0800 Subject: [PATCH] Removed Sign --- Lagrange.Core.sln | 6 --- Lagrange.Signature/Lagrange.Signature.csproj | 9 ----- Lagrange.Signature/Program.cs | 6 --- .../Properties/launchSettings.json | 37 ------------------- 4 files changed, 58 deletions(-) delete mode 100644 Lagrange.Signature/Lagrange.Signature.csproj delete mode 100644 Lagrange.Signature/Program.cs delete mode 100644 Lagrange.Signature/Properties/launchSettings.json diff --git a/Lagrange.Core.sln b/Lagrange.Core.sln index 78d22985b..d3d715ef4 100644 --- a/Lagrange.Core.sln +++ b/Lagrange.Core.sln @@ -6,8 +6,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lagrange.Core.Test", "Lagra EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lagrange.OneBot", "Lagrange.OneBot\Lagrange.OneBot.csproj", "{37AEDD3B-9B9F-4782-ADD5-BA2436FB2507}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lagrange.Signature", "Lagrange.Signature\Lagrange.Signature.csproj", "{FE894A94-407C-4C8D-AE50-1758EBAB6E8C}" -EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -26,9 +24,5 @@ Global {37AEDD3B-9B9F-4782-ADD5-BA2436FB2507}.Debug|Any CPU.Build.0 = Debug|Any CPU {37AEDD3B-9B9F-4782-ADD5-BA2436FB2507}.Release|Any CPU.ActiveCfg = Release|Any CPU {37AEDD3B-9B9F-4782-ADD5-BA2436FB2507}.Release|Any CPU.Build.0 = Release|Any CPU - {FE894A94-407C-4C8D-AE50-1758EBAB6E8C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {FE894A94-407C-4C8D-AE50-1758EBAB6E8C}.Debug|Any CPU.Build.0 = Debug|Any CPU - {FE894A94-407C-4C8D-AE50-1758EBAB6E8C}.Release|Any CPU.ActiveCfg = Release|Any CPU - {FE894A94-407C-4C8D-AE50-1758EBAB6E8C}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection EndGlobal diff --git a/Lagrange.Signature/Lagrange.Signature.csproj b/Lagrange.Signature/Lagrange.Signature.csproj deleted file mode 100644 index 2917b6fc1..000000000 --- a/Lagrange.Signature/Lagrange.Signature.csproj +++ /dev/null @@ -1,9 +0,0 @@ - - - - net7.0 - enable - enable - - - diff --git a/Lagrange.Signature/Program.cs b/Lagrange.Signature/Program.cs deleted file mode 100644 index ec8e4f41d..000000000 --- a/Lagrange.Signature/Program.cs +++ /dev/null @@ -1,6 +0,0 @@ -var builder = WebApplication.CreateBuilder(args); -var app = builder.Build(); - -app.MapGet("/", () => "Hello World!"); - -app.Run(); \ No newline at end of file diff --git a/Lagrange.Signature/Properties/launchSettings.json b/Lagrange.Signature/Properties/launchSettings.json deleted file mode 100644 index 3e01a6006..000000000 --- a/Lagrange.Signature/Properties/launchSettings.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "iisSettings": { - "windowsAuthentication": false, - "anonymousAuthentication": true, - "iisExpress": { - "applicationUrl": "http://localhost:20608", - "sslPort": 44313 - } - }, - "profiles": { - "http": { - "commandName": "Project", - "dotnetRunMessages": true, - "launchBrowser": true, - "applicationUrl": "http://localhost:5261", - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } - }, - "https": { - "commandName": "Project", - "dotnetRunMessages": true, - "launchBrowser": true, - "applicationUrl": "https://localhost:7078;http://localhost:5261", - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } - }, - "IIS Express": { - "commandName": "IISExpress", - "launchBrowser": true, - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } - } - } -}