PromptForSaveOnCreation 項目 (Visual Studio 範本)
指定是否要提示使用者透過建立專案時的 [新增專案] 對話方塊指定專案儲存位置。如果這個項目設定為 true,就會提示使用者指定儲存位置,如果為 false,則不會提示使用者 (也就是說,會建立暫存的專案)。
<PromptForSaveOnCreation> true/false </PromptForSaveOnCreation>
屬性和項目
下列章節會說明屬性、子項目和父項目。
屬性
無。
子項目
無。
父項目
元素 |
描述 |
---|---|
必要項目。 為範本分類,並定義在 [新增專案] 或 [加入新項目] 對話方塊中範本的顯示方式。 |
文字值
需要文字值。
文字必須是 true 或 false。若是 true,表示會在建立專案時提示使用者指定儲存位置。
備註
PromptForSaveOnCreation 是選擇性項目。預設值是 false。
暫存專案是不需在磁碟上儲存內容即可進行建立或修改的專案。如需詳細資訊,請參閱暫存專案。
範例
下列範例將 PromptForSaveOnCreation 的值設定為 false,指定不允許專案建立為暫存專案。
<VSTemplate Type="Project" Version="3.0.0"
xmlns="https://schemas.microsoft.com/developer/vstemplate/2005">
<TemplateData>
<Name>My template</Name>
<Description>A basic template</Description>
<Icon>TemplateIcon.ico</Icon>
<ProjectType>CSharp</ProjectType>
<PromptForSaveOnCreation>false</PromptForSaveOnCreation>
</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>
</VSTemplate>