ProviderAdded
This commit is contained in:
parent
ef5f61f10b
commit
cc7d79b6fc
@ -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
|
||||
|
6
UniversityProvider/Program.cs
Normal file
6
UniversityProvider/Program.cs
Normal file
@ -0,0 +1,6 @@
|
||||
var builder = WebApplication.CreateBuilder(args);
|
||||
var app = builder.Build();
|
||||
|
||||
app.MapGet("/", () => "Hello World!");
|
||||
|
||||
app.Run();
|
28
UniversityProvider/Properties/launchSettings.json
Normal file
28
UniversityProvider/Properties/launchSettings.json
Normal file
@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
9
UniversityProvider/UniversityProvider.csproj
Normal file
9
UniversityProvider/UniversityProvider.csproj
Normal file
@ -0,0 +1,9 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
8
UniversityProvider/appsettings.Development.json
Normal file
8
UniversityProvider/appsettings.Development.json
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
}
|
||||
}
|
9
UniversityProvider/appsettings.json
Normal file
9
UniversityProvider/appsettings.json
Normal file
@ -0,0 +1,9 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*"
|
||||
}
|
Loading…
Reference in New Issue
Block a user