gpt4 book ai didi

asp.net-core - ASP.NET Core 默认调试启动 URL

转载 作者:行者123 更新时间:2023-12-02 03:04:31 29 4
gpt4 key购买 nike

使用 ASP.NET Core Web API 模板时,默认调试启动 URL 以某种方式设置为 api/values。此默认配置在哪里以及如何更改它?

最佳答案

我能找到的有关此启动 URL 声明位置的文档非常少。这个blog post中有简单的提及。在 MSDN 上。我最终在项目的 Properties 节点下的 launchSettings.json 文件中偶然发现了它,如下所示:

enter image description here

以下是该文件的内容:

{
"profiles": {
"IIS Express": {
"commandName" : "IISExpress",
"launchBrowser": true,
"launchUrl": "api/values",
"environmentVariables" : {
"ASPNET_ENV": "Development"
}
}
}
}

您可以将 launchURL 更改为您想要的默认路由。

关于asp.net-core - ASP.NET Core 默认调试启动 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30002050/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com