標籤:
上一篇,我們製作了項目模板,本篇我製作項目範本
首先,從我們需要匯出模板的項目中,檔案->匯出模板,彈出 匯出模板嚮導 對話方塊
選擇項目範本,點擊下一步
選擇要匯出的項,點擊下一步
選擇要Reference的類庫
修改模板名稱,點擊完成
然後,解壓產生的zip檔案,
開啟.vstemplate檔案
<VSTemplate Version="3.0.0" xmlns="http://schemas.microsoft.com/developer/vstemplate/2005" Type="Item"> <TemplateData> <DefaultName>CodeTimerTemplate.cs</DefaultName> <Name>CodeTimerTemplate</Name> <Description><沒有可用的說明></Description> <ProjectType>CSharp</ProjectType> <SortOrder>10</SortOrder> <Icon>__TemplateIcon.ico</Icon> </TemplateData> <TemplateContent> <References> <Reference> <Assembly>System</Assembly> </Reference> </References> <ProjectItem SubType="Code" TargetFileName="$fileinputname$.cs" ReplaceParameters="true">CodeTimer.cs</ProjectItem> </TemplateContent></VSTemplate>
修改TemplateData,修改模板的相關資訊
修改 TemplateContent,將TargetFileName改成自己想要的
開啟項檔案CodeTimer.cs,做一些自己的修改
using System;using System.Diagnostics;using System.Runtime.InteropServices;using System.Threading;namespace $rootnamespace${ public static class $safeitemname$ { public static void Initialize()
最後壓縮成zip檔案放到
(Vs安裝目錄)\Visual Studio 2013\Templates\ItemTemplates
然後在Vs裡面的建立項就可以看到自己的項目範本了
Visual Studio 項目模板製作(二)