Browse Source

Merge pull request #12526 from abpframework/TemplateRandomSslPortStep

Enhanced template random SSL port feature.
pull/12713/head
Yunus Emre Kalkan 4 years ago
committed by GitHub
parent
commit
58bdfd3f9d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ProjectBuilding/Templates/App/AppTemplateBase.cs
  2. 4
      framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ProjectBuilding/Templates/Module/ModuleTemplateBase.cs
  3. 6
      templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server.Mongo/Properties/launchSettings.json
  4. 6
      templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server.Mongo/appsettings.json
  5. 6
      templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/Properties/launchSettings.json
  6. 6
      templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/appsettings.json
  7. 6
      templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host.Mongo/Properties/launchSettings.json
  8. 6
      templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host.Mongo/appsettings.json
  9. 6
      templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/Properties/launchSettings.json
  10. 6
      templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/appsettings.json
  11. 6
      templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc.Mongo/Properties/launchSettings.json
  12. 4
      templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc.Mongo/appsettings.json
  13. 6
      templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/Properties/launchSettings.json
  14. 4
      templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/appsettings.json
  15. 6
      templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server.Tiered/Properties/launchSettings.json
  16. 2
      templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server.Tiered/appsettings.json
  17. 6
      templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server/Properties/launchSettings.json
  18. 6
      templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server/appsettings.json
  19. 2
      templates/app/aspnet-core/src/MyCompanyName.MyProjectName.DbMigrator/appsettings.json
  20. 6
      templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Host/Properties/launchSettings.json
  21. 2
      templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Host/wwwroot/appsettings.json
  22. 6
      templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/Properties/launchSettings.json
  23. 6
      templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/appsettings.json
  24. 27
      templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Web/Properties/launchSettings.json

7
framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ProjectBuilding/Templates/App/AppTemplateBase.cs

@ -406,7 +406,12 @@ public abstract class AppTemplateBase : TemplateInfo
"https://localhost:44301", "https://localhost:44301",
"https://localhost:44302", "https://localhost:44302",
"https://localhost:44303", "https://localhost:44303",
"https://localhost:44305" "https://localhost:44304",
"https://localhost:44305",
"https://localhost:44306",
"https://localhost:44307",
"https://localhost:44308",
"https://localhost:44309"
} }
) )
); );

4
framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ProjectBuilding/Templates/Module/ModuleTemplateBase.cs

@ -90,7 +90,9 @@ public abstract class ModuleTemplateBase : TemplateInfo
"https://localhost:44300", "https://localhost:44300",
"https://localhost:44301", "https://localhost:44301",
"https://localhost:44302", "https://localhost:44302",
"https://localhost:44303" "https://localhost:44303",
"https://localhost:44304",
"https://localhost:44305"
})); }));
} }

6
templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server.Mongo/Properties/launchSettings.json

@ -3,8 +3,8 @@
"windowsAuthentication": false, "windowsAuthentication": false,
"anonymousAuthentication": true, "anonymousAuthentication": true,
"iisExpress": { "iisExpress": {
"applicationUrl": "https://localhost:44313/", "applicationUrl": "https://localhost:44300/",
"sslPort": 44313 "sslPort": 44300
} }
}, },
"profiles": { "profiles": {
@ -19,7 +19,7 @@
"commandName": "Project", "commandName": "Project",
"dotnetRunMessages": "true", "dotnetRunMessages": "true",
"launchBrowser": true, "launchBrowser": true,
"applicationUrl": "https://localhost:44313/", "applicationUrl": "https://localhost:44300/",
"environmentVariables": { "environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development" "ASPNETCORE_ENVIRONMENT": "Development"
} }

6
templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server.Mongo/appsettings.json

@ -1,13 +1,13 @@
{ {
"App": { "App": {
"SelfUrl": "https://localhost:44313", "SelfUrl": "https://localhost:44300",
"RedirectAllowedUrls": "https://localhost:44313" "RedirectAllowedUrls": "https://localhost:44300"
}, },
"ConnectionStrings": { "ConnectionStrings": {
"Default": "mongodb://localhost:27017/MyProjectName", "Default": "mongodb://localhost:27017/MyProjectName",
}, },
"AuthServer": { "AuthServer": {
"Authority": "https://localhost:44313", "Authority": "https://localhost:44300",
"RequireHttpsMetadata": "false" "RequireHttpsMetadata": "false"
}, },
"StringEncryption": { "StringEncryption": {

6
templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/Properties/launchSettings.json

@ -3,8 +3,8 @@
"windowsAuthentication": false, "windowsAuthentication": false,
"anonymousAuthentication": true, "anonymousAuthentication": true,
"iisExpress": { "iisExpress": {
"applicationUrl": "https://localhost:44313/", "applicationUrl": "https://localhost:44300/",
"sslPort": 44313 "sslPort": 44300
} }
}, },
"profiles": { "profiles": {
@ -19,7 +19,7 @@
"commandName": "Project", "commandName": "Project",
"dotnetRunMessages": "true", "dotnetRunMessages": "true",
"launchBrowser": true, "launchBrowser": true,
"applicationUrl": "https://localhost:44313/", "applicationUrl": "https://localhost:44300/",
"environmentVariables": { "environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development" "ASPNETCORE_ENVIRONMENT": "Development"
} }

6
templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/appsettings.json

@ -1,13 +1,13 @@
{ {
"App": { "App": {
"SelfUrl": "https://localhost:44313", "SelfUrl": "https://localhost:44300",
"RedirectAllowedUrls": "https://localhost:44313" "RedirectAllowedUrls": "https://localhost:44300"
}, },
"ConnectionStrings": { "ConnectionStrings": {
"Default": "Server=(LocalDb)\\MSSQLLocalDB;Database=MyProjectName;Trusted_Connection=True" "Default": "Server=(LocalDb)\\MSSQLLocalDB;Database=MyProjectName;Trusted_Connection=True"
}, },
"AuthServer": { "AuthServer": {
"Authority": "https://localhost:44313", "Authority": "https://localhost:44300",
"RequireHttpsMetadata": "false" "RequireHttpsMetadata": "false"
}, },
"StringEncryption": { "StringEncryption": {

6
templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host.Mongo/Properties/launchSettings.json

@ -3,8 +3,8 @@
"windowsAuthentication": false, "windowsAuthentication": false,
"anonymousAuthentication": true, "anonymousAuthentication": true,
"iisExpress": { "iisExpress": {
"applicationUrl": "https://localhost:44305", "applicationUrl": "https://localhost:44300",
"sslPort": 44305 "sslPort": 44300
} }
}, },
"profiles": { "profiles": {
@ -18,7 +18,7 @@
"MyCompanyName.MyProjectName": { "MyCompanyName.MyProjectName": {
"commandName": "Project", "commandName": "Project",
"launchBrowser": true, "launchBrowser": true,
"applicationUrl": "https://localhost:44305", "applicationUrl": "https://localhost:44300",
"environmentVariables": { "environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development" "ASPNETCORE_ENVIRONMENT": "Development"
} }

6
templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host.Mongo/appsettings.json

@ -1,6 +1,6 @@
{ {
"App": { "App": {
"SelfUrl": "https://localhost:44305", "SelfUrl": "https://localhost:44300",
"ClientUrl": "http://localhost:4200", "ClientUrl": "http://localhost:4200",
"CorsOrigins": "https://*.MyProjectName.com,http://localhost:4200", "CorsOrigins": "https://*.MyProjectName.com,http://localhost:4200",
"RedirectAllowedUrls": "http://localhost:4200" "RedirectAllowedUrls": "http://localhost:4200"
@ -12,7 +12,7 @@
"Configuration": "127.0.0.1" "Configuration": "127.0.0.1"
}, },
"AuthServer": { "AuthServer": {
"Authority": "https://localhost:44305", "Authority": "https://localhost:44300",
"RequireHttpsMetadata": "false", "RequireHttpsMetadata": "false",
"SwaggerClientId": "MyProjectName_Swagger", "SwaggerClientId": "MyProjectName_Swagger",
"SwaggerClientSecret": "1q2w3e*" "SwaggerClientSecret": "1q2w3e*"
@ -30,7 +30,7 @@
"MyProjectName_Swagger": { "MyProjectName_Swagger": {
"ClientId": "MyProjectName_Swagger", "ClientId": "MyProjectName_Swagger",
"ClientSecret": "1q2w3e*", "ClientSecret": "1q2w3e*",
"RootUrl": "https://localhost:44305" "RootUrl": "https://localhost:44300"
} }
} }
} }

6
templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/Properties/launchSettings.json

@ -3,8 +3,8 @@
"windowsAuthentication": false, "windowsAuthentication": false,
"anonymousAuthentication": true, "anonymousAuthentication": true,
"iisExpress": { "iisExpress": {
"applicationUrl": "https://localhost:44305", "applicationUrl": "https://localhost:44300",
"sslPort": 44305 "sslPort": 44300
} }
}, },
"profiles": { "profiles": {
@ -18,7 +18,7 @@
"MyCompanyName.MyProjectName": { "MyCompanyName.MyProjectName": {
"commandName": "Project", "commandName": "Project",
"launchBrowser": true, "launchBrowser": true,
"applicationUrl": "https://localhost:44305", "applicationUrl": "https://localhost:44300",
"environmentVariables": { "environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development" "ASPNETCORE_ENVIRONMENT": "Development"
} }

6
templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/appsettings.json

@ -1,6 +1,6 @@
{ {
"App": { "App": {
"SelfUrl": "https://localhost:44305", "SelfUrl": "https://localhost:44300",
"ClientUrl": "http://localhost:4200", "ClientUrl": "http://localhost:4200",
"CorsOrigins": "https://*.MyProjectName.com,http://localhost:4200", "CorsOrigins": "https://*.MyProjectName.com,http://localhost:4200",
"RedirectAllowedUrls": "http://localhost:4200" "RedirectAllowedUrls": "http://localhost:4200"
@ -12,7 +12,7 @@
"Configuration": "127.0.0.1" "Configuration": "127.0.0.1"
}, },
"AuthServer": { "AuthServer": {
"Authority": "https://localhost:44305", "Authority": "https://localhost:44300",
"RequireHttpsMetadata": "false", "RequireHttpsMetadata": "false",
"SwaggerClientId": "MyProjectName_Swagger", "SwaggerClientId": "MyProjectName_Swagger",
"SwaggerClientSecret": "1q2w3e*" "SwaggerClientSecret": "1q2w3e*"
@ -30,7 +30,7 @@
"MyProjectName_Swagger": { "MyProjectName_Swagger": {
"ClientId": "MyProjectName_Swagger", "ClientId": "MyProjectName_Swagger",
"ClientSecret": "1q2w3e*", "ClientSecret": "1q2w3e*",
"RootUrl": "https://localhost:44305" "RootUrl": "https://localhost:44300"
} }
} }
} }

6
templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc.Mongo/Properties/launchSettings.json

@ -3,8 +3,8 @@
"windowsAuthentication": false, "windowsAuthentication": false,
"anonymousAuthentication": true, "anonymousAuthentication": true,
"iisExpress": { "iisExpress": {
"applicationUrl": "https://localhost:44303/", "applicationUrl": "https://localhost:44300/",
"sslPort": 44303 "sslPort": 44300
} }
}, },
"profiles": { "profiles": {
@ -21,7 +21,7 @@
"environmentVariables": { "environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development" "ASPNETCORE_ENVIRONMENT": "Development"
}, },
"applicationUrl": "https://localhost:44303/" "applicationUrl": "https://localhost:44300/"
} }
} }
} }

4
templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc.Mongo/appsettings.json

@ -1,12 +1,12 @@
{ {
"App": { "App": {
"SelfUrl": "https://localhost:44303" "SelfUrl": "https://localhost:44300"
}, },
"ConnectionStrings": { "ConnectionStrings": {
"Default": "mongodb://localhost:27017/MyProjectName" "Default": "mongodb://localhost:27017/MyProjectName"
}, },
"AuthServer": { "AuthServer": {
"Authority": "https://localhost:44303", "Authority": "https://localhost:44300",
"RequireHttpsMetadata": "false" "RequireHttpsMetadata": "false"
}, },
"StringEncryption": { "StringEncryption": {

6
templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/Properties/launchSettings.json

@ -3,8 +3,8 @@
"windowsAuthentication": false, "windowsAuthentication": false,
"anonymousAuthentication": true, "anonymousAuthentication": true,
"iisExpress": { "iisExpress": {
"applicationUrl": "https://localhost:44303/", "applicationUrl": "https://localhost:44300/",
"sslPort": 44303 "sslPort": 44300
} }
}, },
"profiles": { "profiles": {
@ -21,7 +21,7 @@
"environmentVariables": { "environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development" "ASPNETCORE_ENVIRONMENT": "Development"
}, },
"applicationUrl": "https://localhost:44303/" "applicationUrl": "https://localhost:44300/"
} }
} }
} }

4
templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/appsettings.json

@ -1,12 +1,12 @@
{ {
"App": { "App": {
"SelfUrl": "https://localhost:44303" "SelfUrl": "https://localhost:44300"
}, },
"ConnectionStrings": { "ConnectionStrings": {
"Default": "Server=(LocalDb)\\MSSQLLocalDB;Database=MyProjectName;Trusted_Connection=True" "Default": "Server=(LocalDb)\\MSSQLLocalDB;Database=MyProjectName;Trusted_Connection=True"
}, },
"AuthServer": { "AuthServer": {
"Authority": "https://localhost:44303", "Authority": "https://localhost:44300",
"RequireHttpsMetadata": "false" "RequireHttpsMetadata": "false"
}, },
"StringEncryption": { "StringEncryption": {

6
templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server.Tiered/Properties/launchSettings.json

@ -3,8 +3,8 @@
"windowsAuthentication": false, "windowsAuthentication": false,
"anonymousAuthentication": true, "anonymousAuthentication": true,
"iisExpress": { "iisExpress": {
"applicationUrl": "https://localhost:44314/", "applicationUrl": "https://localhost:44309/",
"sslPort": 44314 "sslPort": 44309
} }
}, },
"profiles": { "profiles": {
@ -19,7 +19,7 @@
"commandName": "Project", "commandName": "Project",
"dotnetRunMessages": "true", "dotnetRunMessages": "true",
"launchBrowser": true, "launchBrowser": true,
"applicationUrl": "https://localhost:44314/", "applicationUrl": "https://localhost:44309/",
"environmentVariables": { "environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development" "ASPNETCORE_ENVIRONMENT": "Development"
} }

2
templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server.Tiered/appsettings.json

@ -1,6 +1,6 @@
{ {
"App": { "App": {
"SelfUrl": "https://localhost:44314" "SelfUrl": "https://localhost:44309"
}, },
"RemoteServices": { "RemoteServices": {
"Default": { "Default": {

6
templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server/Properties/launchSettings.json

@ -3,8 +3,8 @@
"windowsAuthentication": false, "windowsAuthentication": false,
"anonymousAuthentication": true, "anonymousAuthentication": true,
"iisExpress": { "iisExpress": {
"applicationUrl": "https://localhost:44313/", "applicationUrl": "https://localhost:44308/",
"sslPort": 44313 "sslPort": 44308
} }
}, },
"profiles": { "profiles": {
@ -19,7 +19,7 @@
"commandName": "Project", "commandName": "Project",
"dotnetRunMessages": "true", "dotnetRunMessages": "true",
"launchBrowser": true, "launchBrowser": true,
"applicationUrl": "https://localhost:44313/", "applicationUrl": "https://localhost:44308/",
"environmentVariables": { "environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development" "ASPNETCORE_ENVIRONMENT": "Development"
} }

6
templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server/appsettings.json

@ -1,13 +1,13 @@
{ {
"App": { "App": {
"SelfUrl": "https://localhost:44313", "SelfUrl": "https://localhost:44308",
"RedirectAllowedUrls": "https://localhost:44313" "RedirectAllowedUrls": "https://localhost:44308"
}, },
"ConnectionStrings": { "ConnectionStrings": {
"Default": "Server=(LocalDb)\\MSSQLLocalDB;Database=MyProjectName;Trusted_Connection=True" "Default": "Server=(LocalDb)\\MSSQLLocalDB;Database=MyProjectName;Trusted_Connection=True"
}, },
"AuthServer": { "AuthServer": {
"Authority": "https://localhost:44313", "Authority": "https://localhost:44308",
"RequireHttpsMetadata": "false" "RequireHttpsMetadata": "false"
}, },
"StringEncryption": { "StringEncryption": {

2
templates/app/aspnet-core/src/MyCompanyName.MyProjectName.DbMigrator/appsettings.json

@ -21,7 +21,7 @@
"MyProjectName_BlazorServerTiered": { "MyProjectName_BlazorServerTiered": {
"ClientId": "MyProjectName_BlazorServerTiered", "ClientId": "MyProjectName_BlazorServerTiered",
"ClientSecret": "1q2w3e*", "ClientSecret": "1q2w3e*",
"RootUrl": "https://localhost:44314" "RootUrl": "https://localhost:44309"
}, },
"MyProjectName_Swagger": { "MyProjectName_Swagger": {
"ClientId": "MyProjectName_Swagger", "ClientId": "MyProjectName_Swagger",

6
templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Host/Properties/launchSettings.json

@ -3,8 +3,8 @@
"windowsAuthentication": false, "windowsAuthentication": false,
"anonymousAuthentication": true, "anonymousAuthentication": true,
"iisExpress": { "iisExpress": {
"applicationUrl": "https://localhost:44307", "applicationUrl": "https://localhost:44305",
"sslPort": 44307 "sslPort": 44305
} }
}, },
"profiles": { "profiles": {
@ -20,7 +20,7 @@
"commandName": "Project", "commandName": "Project",
"launchBrowser": true, "launchBrowser": true,
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
"applicationUrl": "https://localhost:44307", "applicationUrl": "https://localhost:44305",
"environmentVariables": { "environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development" "ASPNETCORE_ENVIRONMENT": "Development"
} }

2
templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Host/wwwroot/appsettings.json

@ -1,6 +1,6 @@
{ {
"App": { "App": {
"SelfUrl": "https://localhost:44307" "SelfUrl": "https://localhost:44305"
}, },
"AuthServer": { "AuthServer": {
"Authority": "https://localhost:44301", "Authority": "https://localhost:44301",

6
templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/Properties/launchSettings.json

@ -3,8 +3,8 @@
"windowsAuthentication": false, "windowsAuthentication": false,
"anonymousAuthentication": true, "anonymousAuthentication": true,
"iisExpress": { "iisExpress": {
"applicationUrl": "https://localhost:44313/", "applicationUrl": "https://localhost:44304/",
"sslPort": 44313 "sslPort": 44304
} }
}, },
"profiles": { "profiles": {
@ -19,7 +19,7 @@
"commandName": "Project", "commandName": "Project",
"dotnetRunMessages": "true", "dotnetRunMessages": "true",
"launchBrowser": true, "launchBrowser": true,
"applicationUrl": "https://localhost:44313/", "applicationUrl": "https://localhost:44304/",
"environmentVariables": { "environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development" "ASPNETCORE_ENVIRONMENT": "Development"
} }

6
templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/appsettings.json

@ -1,13 +1,13 @@
{ {
"App": { "App": {
"SelfUrl": "https://localhost:44313", "SelfUrl": "https://localhost:44304",
"RedirectAllowedUrls": "https://localhost:44313" "RedirectAllowedUrls": "https://localhost:44304"
}, },
"ConnectionStrings": { "ConnectionStrings": {
"Default": "Server=(LocalDb)\\MSSQLLocalDB;Database=MyProjectName_Unified;Trusted_Connection=True" "Default": "Server=(LocalDb)\\MSSQLLocalDB;Database=MyProjectName_Unified;Trusted_Connection=True"
}, },
"AuthServer": { "AuthServer": {
"Authority": "https://localhost:44313", "Authority": "https://localhost:44304",
"RequireHttpsMetadata": "false" "RequireHttpsMetadata": "false"
} }
} }

27
templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Web/Properties/launchSettings.json

@ -1,27 +0,0 @@
{
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:64779/",
"sslPort": 44326
}
},
"profiles": {
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"MyCompanyName.MyProjectName.Web": {
"commandName": "Project",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"applicationUrl": "https://localhost:5001;http://localhost:5000"
}
}
}
Loading…
Cancel
Save