Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: obsolete/Microsoft.VisualStudio.Project/Automation/OAFolderItem.cs

Issue 10928195: First round of dead file removal (Closed) Base URL: https://github.com/samclegg/nativeclient-sdk.git@master
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 /// Copyright (c) Microsoft Corporation. All rights reserved.
2
3 using System;
4 using System.Diagnostics.CodeAnalysis;
5 using System.Runtime.InteropServices;
6 using EnvDTE;
7
8 namespace Microsoft.VisualStudio.Project.Automation
9 {
10 /// <summary>
11 /// Represents an automation object for a folder in a project
12 /// </summary>
13 [SuppressMessage("Microsoft.Interoperability", "CA1405:ComVisibleTypeBas eTypesShouldBeComVisible")]
14 [ComVisible(true), CLSCompliant(false)]
15 public class OAFolderItem : OAProjectItem<FolderNode>
16 {
17 #region ctors
18 public OAFolderItem(OAProject project, FolderNode node)
19 : base(project, node)
20 {
21 }
22
23 #endregion
24
25 #region overridden methods
26 public override ProjectItems Collection
27 {
28 get
29 {
30 ProjectItems items = new OAProjectItems(this.Pro ject, this.Node);
31 return items;
32 }
33 }
34
35 public override ProjectItems ProjectItems
36 {
37 get
38 {
39 return this.Collection;
40 }
41 }
42 #endregion
43 }
44 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698