Browse Source
EnvDTE.ProjectItem.FileNames and EnvDTE.CodeType.IsDerivedFrom are now parameterised properties to match the Visual Studio API.pull/28/head
10 changed files with 53 additions and 12 deletions
@ -0,0 +1,16 @@
@@ -0,0 +1,16 @@
|
||||
' Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt) |
||||
' This code is distributed under the GNU LGPL (for details please see \doc\license.txt) |
||||
|
||||
Namespace EnvDTE |
||||
Public MustInherit Class CodeElementBase |
||||
Inherits MarshalByRefObject |
||||
|
||||
ReadOnly Property IsDerivedFrom(fullName As String) As Boolean |
||||
Get |
||||
Return GetIsDerivedFrom(fullName) |
||||
End Get |
||||
End Property |
||||
|
||||
Protected MustOverride Function GetIsDerivedFrom(ByVal fullName As String) As Boolean |
||||
End Class |
||||
End Namespace |
@ -0,0 +1,16 @@
@@ -0,0 +1,16 @@
|
||||
' Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt) |
||||
' This code is distributed under the GNU LGPL (for details please see \doc\license.txt) |
||||
|
||||
Namespace EnvDTE |
||||
Public MustInherit Class ProjectItemBase |
||||
Inherits MarshalByRefObject |
||||
|
||||
ReadOnly Property FileNames(index As Short) As String |
||||
Get |
||||
Return GetFileNames(index) |
||||
End Get |
||||
End Property |
||||
|
||||
Protected MustOverride Function GetFileNames(ByVal index As Short) As String |
||||
End Class |
||||
End Namespace |
Loading…
Reference in new issue