如何在Visual Studio中更改新创建文件的默认标头文本?

sbdsn5lh  于 2023-01-17  发布在  其他
关注(0)|答案(1)|浏览(223)

我使用的是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中的哪里更新此默认标题文本吗?非常感谢。

hgc7kmma

hgc7kmma1#

您可以通过editorconfig规则设置file_header_template的值来更改文本,例如:

file_header_template = Licensed to foo bar

更多详细信息和示例可从Microsoft获得,网址为:https://learn.microsoft.com/en-us/visualstudio/ide/reference/add-file-header?view=vs-2022

相关问题