FullClassName 元素 (Visual Studio 範本精靈延伸模組)
實作 介面之類別 IWizard
的完整名稱。
<VSTemplate><WizardExtension> ... <FullClassName>
語法
<FullClassName>ClassName</FullClassName>
屬性和元素
下列章節將說明屬性、子項目和父項目。
屬性
無。
子元素
無。
父元素
元素 | 描述 |
---|---|
WizardExtension | 包含自定義範本精靈的註冊元素。 |
文字值
需要文字值。
此文字會指定實作 介面的 IWizard
類別。 指定的類別必須存在於 Assembly 專案指定的元件中。
備註
FullClassName
是 WizardExtension
的必要子項目。
範例
下列範例說明 Visual C# Windows 應用程式之標準專案範本的元數據。
<VSTemplate Version="3.0.0" Type="Item"
xmlns="http://schemas.microsoft.com/developer/vstemplate/2005">
<TemplateData>
<Name>MyTemplate</Name>
<Description>Template using IWizard extension</Description>
<Icon>TemplateIcon.ico</Icon>
<ProjectType>CSharp</ProjectType>
</TemplateData>
<TemplateContent>
<Project File="MyTemplate.csproj">
<ProjectItem>Form1.cs<ProjectItem>
<ProjectItem>Form1.Designer.cs</ProjectItem>
<ProjectItem>Program.cs</ProjectItem>
<ProjectItem>Properties\AssemblyInfo.cs</ProjectItem>
<ProjectItem>Properties\Resources.resx</ProjectItem>
<ProjectItem>Properties\Resources.Designer.cs</ProjectItem>
<ProjectItem>Properties\Settings.settings</ProjectItem>
<ProjectItem>Properties\Settings.Designer.cs</ProjectItem>
</Project>
</TemplateContent>
<WizardExtension>
<Assembly>MyWizard, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, Custom=null</Assembly>
<FullClassName>MyWizard.CustomWizard</FullClassName>
</WizardExtension>
</VSTemplate>