.NET CORE 相关配置
.NET CORE 使用局域网中其他电脑访问
{ "Logging": { "LogLevel": { "Default": "Information", "Microsoft.AspNetCore": "Warning" } }, "Kestrel": { "Endpoints": { "Http": { "Url": "http://*:5205" } } }, "AllowedHosts": "*" }
.NET CORE 使用局域网中其他电脑访问
{ "Logging": { "LogLevel": { "Default": "Information", "Microsoft.AspNetCore": "Warning" } }, "Kestrel": { "Endpoints": { "Http": { "Url": "http://*:5205" } } }, "AllowedHosts": "*" }