2011-01-17 2 views
0

새 소스 파일을 만들 때마다 라이센스가 포함될 주석 서문을 포함하도록 VS2010을 구성하고 싶습니다. 우리의 즉각적인 필요는 C#이지만 다른 언어에 대한 주석 블록을 사전 정의하는 것이 좋습니다 (주석 구문이 다르기 때문에 필요할 수 있음).Visual Studio 2010의 자동 소스 파일 프리앰블?

타사 플러그인이 있습니까?

예 :

/* 
* This software is licensed under the terms of Blah. 
* Use of this software is conditional to saying "Blah". 
*/ 

using System; 
using System.Collections.Generic; 
using System.Linq; 
using System.Text; 

namespace ConsoleApplication1 
{ 
    class Program 
    { 
     static void Main(string[] args) 
     { 
     } 
    } 
} 

답변