我使用的是Visual Studio 2022。我当前的项目有代码分析器(带有.editorconfig
文件)。每当我在此项目中创建新文件时,都会在文件顶部自动追加一个标题文本,内容如下
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
namespace MyClass
{
...
}
我已经尝试搜索一个地方来更改此文本Licensed to the .NET Foundation...
,但无济于事。有人知道我可以在Visual Studio 2022中的哪里更新此默认标题文本吗?非常感谢。
1条答案
按热度按时间hgc7kmma1#
您可以通过editorconfig规则设置
file_header_template
的值来更改文本,例如:更多详细信息和示例可从Microsoft获得,网址为:https://learn.microsoft.com/en-us/visualstudio/ide/reference/add-file-header?view=vs-2022