博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Visual Studio 2013 为C#类文件添加版权信息
阅读量:6073 次
发布时间:2019-06-20

本文共 1739 字,大约阅读时间需要 5 分钟。

更改如下目录下的模版文件即可实现添加版权信息功能

C:\Program Files\Microsoft Visual Studio 12.0\Common7\IDE\ItemTemplates\CSharp\Code\2052\Class\Class.cs (默认路径)

如果安装被更改请到:[安装目录]\Common7\IDE\ItemTemplates\CSharp\Code\2052\Class\Class.cs

 

//=====================================================

     //Copyright (C) 2013-$year$ rootmn LI

     //All rights reserved

     //CLR版本:        $clrversion$

     //新建项输入的名称: $itemname$

     //机器名称:        $machinename$

     //命名空间名称:     $rootnamespace$

     //文件名:           $safeitemname$

     //当前系统时间:     $time$

     //当前登录用户名:   $username$

     //创建年份:         $year$

     //作者站点:        http://www.cnblogs.com/rootmn

 //======================================================

 

using System;

using System.Collections.Generic;

$if$ ($targetframeworkversion$ >= 3.5)using System.Linq;

$endif$using System.Text;

$if$ ($targetframeworkversion$ >= 4.5)using System.Threading.Tasks;

$endif$

namespace $rootnamespace$

{

    class $safeitemrootname$

    {

    }

}

 

 

1 //=====================================================
2      //Copyright (C) 2013-$year$ rootmn LI
3      //All rights reserved
4      //CLR版本:        $clrversion$
5      //新建项输入的名称: $itemname$
6      //机器名称:        $machinename$
7      //命名空间名称:     $rootnamespace$
8      //文件名:           $safeitemname$
9      //当前系统时间:     $time$
10      //当前登录用户名:   $username$
11      //创建年份:         $year$
12      //作者站点:        http://www.cnblogs.com/rootmn
13  //======================================================
14 
15 using System;
16 using System.Collections.Generic;
17 $if$ ($targetframeworkversion$ >= 3.5)using System.Linq;
18 $endif$using System.Text;
19 $if$ ($targetframeworkversion$ >= 4.5)using System.Threading.Tasks;
20 $endif$
21 namespace $rootnamespace$
22 {
23     class $safeitemrootname$
24     {
25     }
26 }

 

转载于:https://www.cnblogs.com/rechen/p/5948099.html

你可能感兴趣的文章
oracle启动报错:ORA-00845: MEMORY_TARGET not supported on this system
查看>>
Awesome Go 收集了 Go 语言的流行库,框架和软件。
查看>>
多文件上传
查看>>
linux网络
查看>>
一、安装APACHE
查看>>
我的友情链接
查看>>
linux中用shell获取昨天、明天或多天前的日期
查看>>
多自治系统之间MPLS ××× 实施详解
查看>>
ruby tk尝试
查看>>
WCF服务发布到IIS中去(VS2013+win7系统)
查看>>
【Intellij IDEA】eclipse项目导入
查看>>
phpStudy开发环境 PHPStorm下XDebug配置
查看>>
windows 8.1 windows 10 自动应答文件的创建
查看>>
打字效果
查看>>
Cocos2d-x CCEditBox 编辑框
查看>>
[转载] 中华典故故事(孙刚)——23 打破砂锅问到底
查看>>
Go方法
查看>>
ORA-01012: not logged on
查看>>
经验分享: 成功通过AWS Advanced Networking Specialty认证考试
查看>>
linux MySQL安装
查看>>