SolutionConfiguration2.Delete أسلوب
قم بإزالة SolutionConfigurationكائن من مجموعة.
مساحة الاسم: EnvDTE80
التجميع: EnvDTE80 (في EnvDTE80.dll)
بناء الجملة
'إقرار
Sub Delete
void Delete()
void Delete()
abstract Delete : unit -> unit
function Delete()
التطبيقات
SolutionConfiguration.Delete()
ملاحظات
ل SolutionConfigurationكائن، لا يمكن تم الحذف آخر تكوين الحل المتبقي.
أمثلة
يعرض هذا المثال اسم عنصر تكوين النشط الحل أول العنصر، ينشط عليه، وحذفها ثم. فتح مشروع في Visual Studioالمتكاملة (IDE) لبيئة التطوير قبل تشغيل هذا إضافة-بوصة بعد تشغيل th هو سبيل المثال، عنصر تكوين الذي تم dهوplayed في صندوق الرسالة الأولى هو الآن تمت إزالته من قائمة المنسدلة تكوينات الحل.
للحصول على مزيد من المعلومات حول كيفية تشغيل هذا المثال إضافة-في، راجع كيفية: الترجمة وإعادة تشغيل أمثلة التعليمات البرمجية لطراز كائن التنفيذ التلقائي.
Imports EnvDTE
Imports EnvDTE80
Public Sub OnConnection(ByVal application As Object, _
ByVal connectMode As ext_ConnectMode, ByVal addInInst As Object, _
ByRef custom As Array) Implements IDTExtensibility2.OnConnection
_applicationObject = CType(application, DTE2)
_addInInstance = CType(addInInst, AddIn)
SolutionConfigurationDeleteExample(_applicationObject)
End Sub
Sub SolutionConfigurationDeleteExample(ByVal dte As DTE2)
' Open a solution in the Visual Studio IDE
' before running this example.
Try
Dim builder As SolutionBuild = _
_applicationObject.Solution.SolutionBuild
Dim config As SolutionConfiguration2
config = CType(builder.SolutionConfigurations.Item(1), _
SolutionConfiguration2)
MsgBox("The first solution configuration item's name in _
the collection is: " & config.Collection.Item(1).Name)
MsgBox("Activating the solution configuration...")
config.Activate()
MsgBox("Deleting the solution configuration...")
config.Delete()
Catch ex As System.Exception
MsgBox(ex.ToString)
End Try
End Sub
using EnvDTE;
using EnvDTE80;
using System.Windows.Forms;
public void OnConnection(object application,
ext_ConnectMode connectMode, object addInInst, ref Array custom)
{
_applicationObject = (DTE2)application;
_addInInstance = (AddIn)addInInst;
SolutionConfigurationDeleteExample(_applicationObject);
}
public void SolutionConfigurationDeleteExample(DTE2 dte)
{
try
{
SolutionBuild builder =
_applicationObject.Solution.SolutionBuild;
SolutionConfiguration2 config;
config =
(SolutionConfiguration2)builder.SolutionConfigurations.Item(1);
MessageBox.Show("The platform name of the
solution configuration is: " + config.PlatformName);
MessageBox.Show("Activating the solution configuration...");
config.Activate();
MessageBox.Show("Deleting the solution configuration...");
config.Delete();
}
catch(SystemException ex)
{
MessageBox.Show(ex.ToString());
}
}
أمن NET Framework.
- الثقة الكاملة للمتصل الفوري. يتعذر استخدام هذا العضو بواسطة التعليمات البرمجية الموثوق بها جزئيًا. لمزيد من المعلومات، راجع باستخدام مكتبات من تعليمات برمجية موثوق بها جزئي.