مشاركة عبر


_Solution.AddFromFile أسلوب

Adds a مشروع إلى the الحل, based تشغيل a ملف مشروع already stored في the النظام.

مساحة الاسم:  EnvDTE
التجميع:  EnvDTE (في EnvDTE.dll)

بناء الجملة

'إقرار
Function AddFromFile ( _
    FileName As String, _
    Exclusive As Boolean _
) As Project
Project AddFromFile(
    string FileName,
    bool Exclusive
)
Project^ AddFromFile(
    [InAttribute] String^ FileName, 
    [InAttribute] bool Exclusive
)
abstract AddFromFile : 
        FileName:string * 
        Exclusive:bool -> Project 
function AddFromFile(
    FileName : String, 
    Exclusive : boolean
) : Project

المعلمات

  • FileName
    النوع: System.String
    مطلوبة.The كامل مسار و اسم الملف of the ملف مشروع.
  • Exclusive
    النوع: System.Boolean
    اختياري.Indicates whether the مشروع loads في the الحالي الحل أو its own; true if the الحالي الحل هو مغلق و the مشروع هو تمت الإضافة إلى a جديد الحل, false if the مشروع هو تمت الإضافة إلى the موجود فتح الحل.

القيمة المُرجعة

النوع: EnvDTE.Project
كائن Project .

ملاحظات

You can استخدم the LaunchWizard أسلوب rather than AddFromFile إلى ينفذ a معالج if you want إلى suppress its واجه المستخدم during execution. LaunchWizard has a معلمة that allows you إلى يعطل the واجه المستخدم.

أمثلة

Sub AddFromFileExample()
   ' This function creates a solution and adds a Visual Basic Console
   ' project to it. 
   Dim soln As Solution

   ' Create a reference to the solution.
   soln = DTE.Solution

   ' Create a new solution.
   soln.Create("c:\temp2", "MyNewSolution")
   ' Add an existing project to the new solution.
   soln.AddFromFile("c:\temp\SomeProj.vbproj")
End Sub

أمن NET Framework.

راجع أيضًَا

المرجع

_Solution واجهة

_Solution الأعضاء

EnvDTE مساحة الاسم