0

我们使用的是 Visual Studio 2012。理想情况下,所有 csharp 文件 (xxx.cs) 都应在文件头中包含版权注释,例如

#region Copyright GOOGLE 2013
// 
// All rights are reserved. Reproduction or transmission in whole or in part, in 
// any form or by any means, electronic, mechanical or otherwise, is prohibited 
// without the prior written consent of the copyright owner. 
// 
#endregion

我的问题是,是否有办法在我们创建文件时自动包含该评论?或者,也可以使用代码分析来防止签入非注释 cs 文件。

4

1 回答 1

0

您可以自定义 Visual Studio 在创建新文件时使用的模板

http://msdn.microsoft.com/en-us/library/ms247119.aspx

您自己的自定义模板可以包含所需的版权声明。

签入时的自动分析是否以及如何标记此类文件取决于您使用的源代码管理系统。许多提供签入前和签入后挂钩。

于 2013-06-13T08:23:17.167 回答