From c8b1f5c391cbd080f29e911957ae0282bc167945 Mon Sep 17 00:00:00 2001 From: Kevin Matsubara Date: Fri, 4 Apr 2025 16:06:58 +0200 Subject: [PATCH] Create a clean solution and move all files. dotnet new sln -n deadballzone --- EntityFrameworkCore.Data/Class1.cs | 6 ----- Program.cs | 6 ----- Properties/launchSettings.json | 23 ------------------- appsettings.Development.json | 8 ------- appsettings.json | 9 -------- deadballzone.sln | 14 ++++++++++++ ef-1.sln | 36 ------------------------------ entity-framework.csproj | 10 --------- 8 files changed, 14 insertions(+), 98 deletions(-) delete mode 100644 EntityFrameworkCore.Data/Class1.cs delete mode 100644 Program.cs delete mode 100644 Properties/launchSettings.json delete mode 100644 appsettings.Development.json delete mode 100644 appsettings.json create mode 100644 deadballzone.sln delete mode 100644 ef-1.sln delete mode 100644 entity-framework.csproj diff --git a/EntityFrameworkCore.Data/Class1.cs b/EntityFrameworkCore.Data/Class1.cs deleted file mode 100644 index 893d501..0000000 --- a/EntityFrameworkCore.Data/Class1.cs +++ /dev/null @@ -1,6 +0,0 @@ -namespace EntityFrameworkCore.Data; - -public class Class1 -{ - -} diff --git a/Program.cs b/Program.cs deleted file mode 100644 index 1760df1..0000000 --- a/Program.cs +++ /dev/null @@ -1,6 +0,0 @@ -var builder = WebApplication.CreateBuilder(args); -var app = builder.Build(); - -app.MapGet("/", () => "Hello World!"); - -app.Run(); diff --git a/Properties/launchSettings.json b/Properties/launchSettings.json deleted file mode 100644 index 17b14de..0000000 --- a/Properties/launchSettings.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "$schema": "https://json.schemastore.org/launchsettings.json", - "profiles": { - "http": { - "commandName": "Project", - "dotnetRunMessages": true, - "launchBrowser": true, - "applicationUrl": "http://localhost:5025", - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } - }, - "https": { - "commandName": "Project", - "dotnetRunMessages": true, - "launchBrowser": true, - "applicationUrl": "https://localhost:7047;http://localhost:5025", - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } - } - } -} diff --git a/appsettings.Development.json b/appsettings.Development.json deleted file mode 100644 index 0c208ae..0000000 --- a/appsettings.Development.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft.AspNetCore": "Warning" - } - } -} diff --git a/appsettings.json b/appsettings.json deleted file mode 100644 index 10f68b8..0000000 --- a/appsettings.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft.AspNetCore": "Warning" - } - }, - "AllowedHosts": "*" -} diff --git a/deadballzone.sln b/deadballzone.sln new file mode 100644 index 0000000..bb32f59 --- /dev/null +++ b/deadballzone.sln @@ -0,0 +1,14 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.31903.59 +MinimumVisualStudioVersion = 10.0.40219.1 +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/ef-1.sln b/ef-1.sln deleted file mode 100644 index 56b7659..0000000 --- a/ef-1.sln +++ /dev/null @@ -1,36 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.5.2.0 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "entity-framework", "entity-framework.csproj", "{F651371C-C6DF-B407-B9D0-5E6C224D4CD2}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EntityFrameworkCore.Data", "EntityFrameworkCore.Data\EntityFrameworkCore.Data.csproj", "{EB2B89D9-FE82-47CC-877F-223A4CA1755E}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EntityFrameworkCore.Domain", "EntityFrameworkCore.Domain\EntityFrameworkCore.Domain.csproj", "{DC955178-72C3-4574-86DE-1D966E38780E}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {F651371C-C6DF-B407-B9D0-5E6C224D4CD2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {F651371C-C6DF-B407-B9D0-5E6C224D4CD2}.Debug|Any CPU.Build.0 = Debug|Any CPU - {F651371C-C6DF-B407-B9D0-5E6C224D4CD2}.Release|Any CPU.ActiveCfg = Release|Any CPU - {F651371C-C6DF-B407-B9D0-5E6C224D4CD2}.Release|Any CPU.Build.0 = Release|Any CPU - {EB2B89D9-FE82-47CC-877F-223A4CA1755E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {EB2B89D9-FE82-47CC-877F-223A4CA1755E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {EB2B89D9-FE82-47CC-877F-223A4CA1755E}.Release|Any CPU.ActiveCfg = Release|Any CPU - {EB2B89D9-FE82-47CC-877F-223A4CA1755E}.Release|Any CPU.Build.0 = Release|Any CPU - {DC955178-72C3-4574-86DE-1D966E38780E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {DC955178-72C3-4574-86DE-1D966E38780E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {DC955178-72C3-4574-86DE-1D966E38780E}.Release|Any CPU.ActiveCfg = Release|Any CPU - {DC955178-72C3-4574-86DE-1D966E38780E}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {55401B4B-4579-4281-B121-FCB05E8BD9C7} - EndGlobalSection -EndGlobal diff --git a/entity-framework.csproj b/entity-framework.csproj deleted file mode 100644 index 908cc7f..0000000 --- a/entity-framework.csproj +++ /dev/null @@ -1,10 +0,0 @@ - - - - net9.0 - enable - enable - entity_framework - - -