From d5b9f44e4c5df8167defd959a7db30c5185f49be Mon Sep 17 00:00:00 2001 From: blyssco Date: Fri, 11 Jul 2025 20:31:03 +0200 Subject: [PATCH] clean solution --- {Liber_Incantamentum => API}/API.csproj | 3 --- {Liber_Incantamentum => API}/Program.cs | 0 .../Properties/launchSettings.json | 4 ++-- .../appsettings.Development.json | 0 {Liber_Incantamentum => API}/appsettings.json | 0 Liber_Incantamentum.sln | 12 ++++++------ Liber_Incantamentum/Liber_Incantamentum.http | 6 ------ 7 files changed, 8 insertions(+), 17 deletions(-) rename {Liber_Incantamentum => API}/API.csproj (91%) rename {Liber_Incantamentum => API}/Program.cs (100%) rename {Liber_Incantamentum => API}/Properties/launchSettings.json (80%) rename {Liber_Incantamentum => API}/appsettings.Development.json (100%) rename {Liber_Incantamentum => API}/appsettings.json (100%) delete mode 100644 Liber_Incantamentum/Liber_Incantamentum.http diff --git a/Liber_Incantamentum/API.csproj b/API/API.csproj similarity index 91% rename from Liber_Incantamentum/API.csproj rename to API/API.csproj index b764994..1fc25bd 100644 --- a/Liber_Incantamentum/API.csproj +++ b/API/API.csproj @@ -10,7 +10,4 @@ - - - diff --git a/Liber_Incantamentum/Program.cs b/API/Program.cs similarity index 100% rename from Liber_Incantamentum/Program.cs rename to API/Program.cs diff --git a/Liber_Incantamentum/Properties/launchSettings.json b/API/Properties/launchSettings.json similarity index 80% rename from Liber_Incantamentum/Properties/launchSettings.json rename to API/Properties/launchSettings.json index 92c536d..38c4856 100644 --- a/Liber_Incantamentum/Properties/launchSettings.json +++ b/API/Properties/launchSettings.json @@ -5,7 +5,7 @@ "commandName": "Project", "dotnetRunMessages": true, "launchBrowser": false, - "applicationUrl": "http://localhost:5225", + "applicationUrl": "http://localhost:5044", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } @@ -14,7 +14,7 @@ "commandName": "Project", "dotnetRunMessages": true, "launchBrowser": false, - "applicationUrl": "https://localhost:7239;http://localhost:5225", + "applicationUrl": "https://localhost:7217;http://localhost:5044", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } diff --git a/Liber_Incantamentum/appsettings.Development.json b/API/appsettings.Development.json similarity index 100% rename from Liber_Incantamentum/appsettings.Development.json rename to API/appsettings.Development.json diff --git a/Liber_Incantamentum/appsettings.json b/API/appsettings.json similarity index 100% rename from Liber_Incantamentum/appsettings.json rename to API/appsettings.json diff --git a/Liber_Incantamentum.sln b/Liber_Incantamentum.sln index f918d2b..3296eae 100644 --- a/Liber_Incantamentum.sln +++ b/Liber_Incantamentum.sln @@ -3,8 +3,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.14.36109.1 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "API", "Liber_Incantamentum\API.csproj", "{BB761821-A9EC-4EBA-83A2-89F32C50041F}" -EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Domain", "Domain\Domain.csproj", "{C045CEDF-9EC0-462F-BA36-B46D80047349}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Infrastructure", "Infrastructure\Infrastructure.csproj", "{4592C924-1FF7-4819-B918-3EDA45358184}" @@ -13,16 +11,14 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tests", "Tests\Tests.csproj EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Application", "Application\Application.csproj", "{D322A7B3-D7B0-4A55-8D9F-C205F6BBD168}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "API", "API\API.csproj", "{35729053-7C6D-4D90-80AD-6A0ACF0B9778}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {BB761821-A9EC-4EBA-83A2-89F32C50041F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {BB761821-A9EC-4EBA-83A2-89F32C50041F}.Debug|Any CPU.Build.0 = Debug|Any CPU - {BB761821-A9EC-4EBA-83A2-89F32C50041F}.Release|Any CPU.ActiveCfg = Release|Any CPU - {BB761821-A9EC-4EBA-83A2-89F32C50041F}.Release|Any CPU.Build.0 = Release|Any CPU {C045CEDF-9EC0-462F-BA36-B46D80047349}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {C045CEDF-9EC0-462F-BA36-B46D80047349}.Debug|Any CPU.Build.0 = Debug|Any CPU {C045CEDF-9EC0-462F-BA36-B46D80047349}.Release|Any CPU.ActiveCfg = Release|Any CPU @@ -39,6 +35,10 @@ Global {D322A7B3-D7B0-4A55-8D9F-C205F6BBD168}.Debug|Any CPU.Build.0 = Debug|Any CPU {D322A7B3-D7B0-4A55-8D9F-C205F6BBD168}.Release|Any CPU.ActiveCfg = Release|Any CPU {D322A7B3-D7B0-4A55-8D9F-C205F6BBD168}.Release|Any CPU.Build.0 = Release|Any CPU + {35729053-7C6D-4D90-80AD-6A0ACF0B9778}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {35729053-7C6D-4D90-80AD-6A0ACF0B9778}.Debug|Any CPU.Build.0 = Debug|Any CPU + {35729053-7C6D-4D90-80AD-6A0ACF0B9778}.Release|Any CPU.ActiveCfg = Release|Any CPU + {35729053-7C6D-4D90-80AD-6A0ACF0B9778}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Liber_Incantamentum/Liber_Incantamentum.http b/Liber_Incantamentum/Liber_Incantamentum.http deleted file mode 100644 index 0d48534..0000000 --- a/Liber_Incantamentum/Liber_Incantamentum.http +++ /dev/null @@ -1,6 +0,0 @@ -@Liber_Incantamentum_HostAddress = http://localhost:5225 - -GET {{Liber_Incantamentum_HostAddress}}/weatherforecast/ -Accept: application/json - -###