2009-09-28 41 views
2

我知道如何做到這一點,但我不知道StyleCop方法是正確的還是工作的。通常情況下在了StyleCop規則,你必須添加這個東西像這樣的例子頭(需要編輯):向C#應用程序添加GNU GPL許可證

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

而且具有了StyleCop ReSharper的:

// -------------------------------------------------------------------------------------------------------------------- 
// <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方法能夠工作。也許我應該把「{一行給出程序的名字和它做什麼的簡要概念}」移到版權標籤上方。 謝謝。

+4

我投票結束這個問題作爲題外話,因爲**它是關於許可或法律問題**,而不是編程或軟件開發。 [見這裏](http://meta.stackoverflow.com/a/274964/1402846)瞭解更多信息,以及[幫助/話題]。 – 2015-06-08 23:48:20

回答

3

有一個how-to應用許可證源代碼。

這將是一個很好的機會,利用代碼的區域:

#region Copyright 
// your copyright goes here 
#endregion 

這樣,開發人員可以摺疊所有的絨毛:-)

此外,創建一個snippet所以你不必記住。