Index: experimental/visual_studio_plugin/third_party/Microsoft.VisualStudio.Project/Automation/OAFolderItem.cs |
diff --git a/experimental/visual_studio_plugin/third_party/Microsoft.VisualStudio.Project/Automation/OAFolderItem.cs b/experimental/visual_studio_plugin/third_party/Microsoft.VisualStudio.Project/Automation/OAFolderItem.cs |
deleted file mode 100644 |
index e9adab1673c762461a9a59815154279c9ac5c543..0000000000000000000000000000000000000000 |
--- a/experimental/visual_studio_plugin/third_party/Microsoft.VisualStudio.Project/Automation/OAFolderItem.cs |
+++ /dev/null |
@@ -1,44 +0,0 @@ |
-/// Copyright (c) Microsoft Corporation. All rights reserved. |
- |
-using System; |
-using System.Diagnostics.CodeAnalysis; |
-using System.Runtime.InteropServices; |
-using EnvDTE; |
- |
-namespace Microsoft.VisualStudio.Project.Automation |
-{ |
- /// <summary> |
- /// Represents an automation object for a folder in a project |
- /// </summary> |
- [SuppressMessage("Microsoft.Interoperability", "CA1405:ComVisibleTypeBaseTypesShouldBeComVisible")] |
- [ComVisible(true), CLSCompliant(false)] |
- public class OAFolderItem : OAProjectItem<FolderNode> |
- { |
- #region ctors |
- public OAFolderItem(OAProject project, FolderNode node) |
- : base(project, node) |
- { |
- } |
- |
- #endregion |
- |
- #region overridden methods |
- public override ProjectItems Collection |
- { |
- get |
- { |
- ProjectItems items = new OAProjectItems(this.Project, this.Node); |
- return items; |
- } |
- } |
- |
- public override ProjectItems ProjectItems |
- { |
- get |
- { |
- return this.Collection; |
- } |
- } |
- #endregion |
- } |
-} |