diff --git a/UniversityBusinessLogic/UniversityBusinessLogic.sln b/UniversityBusinessLogic/UniversityBusinessLogic.sln index a453fdb..0ced884 100644 --- a/UniversityBusinessLogic/UniversityBusinessLogic.sln +++ b/UniversityBusinessLogic/UniversityBusinessLogic.sln @@ -7,6 +7,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UniversityBusinessLogic", " EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniversityCustomer", "..\UniversityCustomer\UniversityCustomer\UniversityCustomer.csproj", "{91FDCC3C-0589-4513-8985-271785919E28}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniversityProvider", "..\UniversityProvider\UniversityProvider.csproj", "{1375A8DD-99F7-4603-8E22-F04D8478ECAE}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -21,6 +23,10 @@ Global {91FDCC3C-0589-4513-8985-271785919E28}.Debug|Any CPU.Build.0 = Debug|Any CPU {91FDCC3C-0589-4513-8985-271785919E28}.Release|Any CPU.ActiveCfg = Release|Any CPU {91FDCC3C-0589-4513-8985-271785919E28}.Release|Any CPU.Build.0 = Release|Any CPU + {1375A8DD-99F7-4603-8E22-F04D8478ECAE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1375A8DD-99F7-4603-8E22-F04D8478ECAE}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1375A8DD-99F7-4603-8E22-F04D8478ECAE}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1375A8DD-99F7-4603-8E22-F04D8478ECAE}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/UniversityProvider/Program.cs b/UniversityProvider/Program.cs new file mode 100644 index 0000000..1760df1 --- /dev/null +++ b/UniversityProvider/Program.cs @@ -0,0 +1,6 @@ +var builder = WebApplication.CreateBuilder(args); +var app = builder.Build(); + +app.MapGet("/", () => "Hello World!"); + +app.Run(); diff --git a/UniversityProvider/Properties/launchSettings.json b/UniversityProvider/Properties/launchSettings.json new file mode 100644 index 0000000..57f13b3 --- /dev/null +++ b/UniversityProvider/Properties/launchSettings.json @@ -0,0 +1,28 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:65378", + "sslPort": 44324 + } + }, + "profiles": { + "UniversityProvider": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "applicationUrl": "https://localhost:7236;http://localhost:5269", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/UniversityProvider/UniversityProvider.csproj b/UniversityProvider/UniversityProvider.csproj new file mode 100644 index 0000000..c78c9c7 --- /dev/null +++ b/UniversityProvider/UniversityProvider.csproj @@ -0,0 +1,9 @@ + + + + net6.0 + enable + enable + + + diff --git a/UniversityProvider/appsettings.Development.json b/UniversityProvider/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/UniversityProvider/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/UniversityProvider/appsettings.json b/UniversityProvider/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/UniversityProvider/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +}