1

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
4

1 に答える 1

6

//なしでテンプレートを作成する必要があります。テンプレートには//のみが含まれている必要があります

All rights are reserved. Reproduction or transmission in whole or in part,
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$

次に、[ファイルヘッダーを名前のあるリージョンに含める]フィールド(ファイルテンプレートのすぐ下)に次のように記述します。

Copyright © $CURRENT_YEAR$ xxx Systems, Incorporated
于 2013-02-28T00:34:20.367 に答える