_Solution.AddFromTemplate 方法
將現有的專案檔及其所包含的一切項目或子目錄,複製至指定的位置並加入至方案中。
命名空間: EnvDTE
組件: EnvDTE (在 EnvDTE.dll 中)
語法
'宣告
Function AddFromTemplate ( _
FileName As String, _
Destination As String, _
ProjectName As String, _
Exclusive As Boolean _
) As Project
Project AddFromTemplate(
string FileName,
string Destination,
string ProjectName,
bool Exclusive
)
Project^ AddFromTemplate(
[InAttribute] String^ FileName,
[InAttribute] String^ Destination,
[InAttribute] String^ ProjectName,
[InAttribute] bool Exclusive
)
abstract AddFromTemplate :
FileName:string *
Destination:string *
ProjectName:string *
Exclusive:bool -> Project
function AddFromTemplate(
FileName : String,
Destination : String,
ProjectName : String,
Exclusive : boolean
) : Project
參數
FileName
類型:String必要項。 範本專案檔的完整路徑和檔名,包含副檔名。
Destination
類型:String必要項。 要在其中複製 FileName 內容的目錄完整路徑。
ProjectName
類型:String必要項。 目的目錄中的專案檔名稱。 必須包含副檔名。 顯示的檔名衍生自 ProjectName。
Exclusive
類型:Boolean選擇項。 指出專案要載入目前的方案或自己的方案。如果目前的方案要關閉而要將專案加入至新的方案,則為 true,如果要將專案加入至現有的開啟方案,則為 false。
傳回值
類型:EnvDTE.Project
Project 物件。
備註
顯示在 [方案瀏覽器] 中的專案名稱是不含副檔名的 ProjectName。 如果目的端中已存在新專案的檔名,AddFromTemplate 將會失敗。
注意事項 |
---|
對於 Visual Basic 和 Visual C# 專案:傳回的 Project 物件為 nullnull 參考 (即 Visual Basic 中的 Nothing)。您可以使用 ProjectName 參數識別新建立的專案,藉此尋找以逐一查看 DTE.Solution.Projects 集合所建立的 Project 物件。 |
範例
Sub SolutionExample()
'This function creates a solution and adds a Visual Basic Console
'project to it.
Dim soln As Solution
Dim proj As Project
Dim msg As String
'Create a reference to the solution.
soln = DTE.Solution
' Create a new solution.
soln.Create("c:\temp2", "MyNewSolution")
' Create a new VB project from a template.
' Adjust the template path and save path as needed.
proj = soln.AddFromTemplate("<template path>\ConsoleApplication.vbproj", "c:\temp2", "My New Project", True)
' Save the new solution and project.
soln.SaveAs("c:\temp2\newsolution.sln")
msg = "Created new solution: " & soln.FullName & vbCrLf
msg = msg & "Created new project: " & proj.Name
MsgBox(msg)
End Sub
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。