有什么办法可以防止 Resharper 插入的文件头被双重注释。
我正在使用默认文件头模板并在代码清理中打开插入文件头。
(Resharper 版本 7.1.2)
// #region Copyright © 2013 xxx Systems, Incorporated
// //
// // 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.
// //
// // Filename: xxx.cs
// // Date: 27/02/2013
// // Author: xxx
// //
// #endregion
这是模板:
#region Copyright © $CURRENT_YEAR$ xxx Systems, Incorporated
//
// 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.
//
// Filename: $FILENAME$
// Date: $CURRENT_DAY$/$CURRENT_MONTH$/$CURRENT_YEAR$
// Author: $USER_LOGIN$
//
#endregion