2

これを行う方法は知っていますが、StyleCop メソッドが真であるかどうかはわかりません。通常、StyleCop ルールでは、この例のようなものをヘッダーに追加する必要があります (編集する必要があります)。

//-----------------------------------------------------------------------
// <copyright file="Widget.cs" company="Sprocket Enterprises">
//     Copyright (c) Sprocket Enterprises. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------

そして、ReSharper の StyleCop を使用すると、次のようになります。

// --------------------------------------------------------------------------------------------------------------------
// <copyright file="Form1.cs" company="">
//   
// </copyright>
// <summary>
//   Defines the Form1 type.
// </summary>
// --------------------------------------------------------------------------------------------------------------------

私の最終的なヘッダーは次のとおりです。

// --------------------------------------------------------------------------------------------------------------------
// <copyright file="Form1.cs" company="{Company}">
//
// Copyright (C) 2009 {Company}
//
// This program is free software: you can redistribute it and/or modify
// it under the +terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program.  If not, see http://www.gnu.org/licenses/. 
// </copyright>
// <summary>
// {one line to give the program's name and a brief idea of what it does.}
// 
// Email: {Email}
// XFire and Steam: {Username}
// </summary>
// --------------------------------------------------------------------------------------------------------------------

このヘッダーをすべてのソースと共有に追加すると、アプリケーションは GPL ライセンスになりますか? そうでない場合、どこに問題がありますか? StyleCop メソッドが機能することを願っています。おそらく、「{プログラムの名前とその機能の簡単なアイデアを示す 1 行}」を著作権タグよりも上に移動する必要があります。ありがとう。

4

2 に答える 2

3

ソースコードにライセンスを適用する方法があります。

これは、コード領域を利用する良い機会です:

#region Copyright
// your copyright goes here
#endregion

そうすれば、開発者はすべての綿毛を折りたたむことができます:-)

また、覚える必要がないようにスニペットを作成します。

于 2009-09-30T10:41:13.413 に答える
2

は、私にはよく見えますよ。GPL FAQを読んだことがありますか?プログラムでのGNUライセンスの使用に関するセクション全体があります。多分あなたはそこで再確認することができます。

于 2009-09-28T13:43:19.167 に答える