ProviderAdded

This commit is contained in:
Danil Markov 2023-03-31 16:05:46 +04:00
parent ef5f61f10b
commit cc7d79b6fc
6 changed files with 66 additions and 0 deletions

View File

@ -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

View File

@ -0,0 +1,6 @@
var builder = WebApplication.CreateBuilder(args);
var app = builder.Build();
app.MapGet("/", () => "Hello World!");
app.Run();

View 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"
}
}
}
}

View File

@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
</Project>

View File

@ -0,0 +1,8 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
}

View File

@ -0,0 +1,9 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
}