launchSettings.json由Visual Studio自动生成。

huangapple go评论57阅读模式
英文:

launchSettings.json automatically generated by Visual Studio

问题

我不记得在使用Visual Studio时曾经看到过launchSettings.json。而且我没有意识到launchSettings.json在工作中的作用。似乎在我的VS项目中并没有使用launchSettings.json,但在删除它后,只要打开解决方案,VS就会自动生成launchSettings.json。如何解决这个问题?

如何解决这个问题?我需要一些易懂的解释。

英文:

I don't remember ever seeing launchSettings.json when I was using Visual Studio. And I didn't realize the role of launchSettings.json at work. It seems that launchSettings.json is not used in my VS project, but after deleting it, VS will automatically generate launchSettings.json as soon as the solution is opened. How to solve it?

How to solve it? I need some understandable explanation

答案1

得分: 1

launchSettings.json 文件存储了 Visual Studio 中用于调试应用程序的配置信息。它允许您指定运行应用程序的各种设置。

launchSettings.json 文件通常位于 .NET Core 或 ASP.NET Core 项目的 Properties 文件夹中。Visual Studio 使用它来配置项目的调试环境。

当然,即使您删除 launchSettings.json,上述信息也会被重新生成,这可能会影响项目的运行速度。

此外,您只需将以下代码添加到您的 csproj 文件中,以停止生成 launchSettings.json:

<NoDefaultLaunchSettingsFile>true</NoDefaultLaunchSettingsFile>
英文:

The launchSettings.json file in Visual Studio stores configuration information for debugging applications. It allows you to specify various settings for running applications.
The launchSettings.json file is typically located in the Properties folder of a .NET Core or ASP.NET Core project. Visual Studio uses it to configure the project's debugging environment.

Of course, even if you delete launchSettings.json, the above information will be regenerated, which may affect the running speed of the project.

Also, you just need to add the following code to your csproj file to stop generating launchSettings.json:

&lt;NoDefaultLaunchSettingsFile&gt;true&lt;/NoDefaultLaunchSettingsFile&gt;

huangapple
  • 本文由 发表于 2023年7月10日 20:25:46
  • 转载请务必保留本文链接:https://go.coder-hub.com/76653730.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定