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

Unified Diff: experimental/visual_studio_plugin/third_party/Microsoft.VisualStudio.Project/Automation/OAVSProjectItem.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 side-by-side diff with in-line comments
Download patch
Index: experimental/visual_studio_plugin/third_party/Microsoft.VisualStudio.Project/Automation/OAVSProjectItem.cs
diff --git a/experimental/visual_studio_plugin/third_party/Microsoft.VisualStudio.Project/Automation/OAVSProjectItem.cs b/experimental/visual_studio_plugin/third_party/Microsoft.VisualStudio.Project/Automation/OAVSProjectItem.cs
deleted file mode 100644
index df3ecace710a4505a58af691e1fea9af51246a78..0000000000000000000000000000000000000000
--- a/experimental/visual_studio_plugin/third_party/Microsoft.VisualStudio.Project/Automation/OAVSProjectItem.cs
+++ /dev/null
@@ -1,71 +0,0 @@
-/// Copyright (c) Microsoft Corporation. All rights reserved.
-
-using System;
-using System.Diagnostics.CodeAnalysis;
-using System.Runtime.InteropServices;
-using EnvDTE;
-using VSLangProj;
-
-namespace Microsoft.VisualStudio.Project.Automation
-{
- /// <summary>
- /// Represents a language-specific project item
- /// </summary>
- [SuppressMessage("Microsoft.Naming", "CA1709:IdentifiersShouldBeCasedCorrectly", MessageId = "OAVS")]
- [ComVisible(true), CLSCompliant(false)]
- public class OAVSProjectItem : VSProjectItem
- {
- #region fields
- private FileNode fileNode;
- #endregion
-
- #region ctors
- public OAVSProjectItem(FileNode fileNode)
- {
- this.FileNode = fileNode;
- }
- #endregion
-
- #region VSProjectItem Members
-
- public virtual EnvDTE.Project ContainingProject
- {
- get { return fileNode.ProjectMgr.GetAutomationObject() as EnvDTE.Project; }
- }
-
- public virtual ProjectItem ProjectItem
- {
- get { return fileNode.GetAutomationObject() as ProjectItem; }
- }
-
- public virtual DTE DTE
- {
- get { return (DTE)this.fileNode.ProjectMgr.Site.GetService(typeof(DTE)); }
- }
-
- public virtual void RunCustomTool()
- {
- this.FileNode.RunGenerator();
- }
-
- #endregion
-
- #region public properties
- /// <summary>
- /// File Node property
- /// </summary>
- public FileNode FileNode
- {
- get
- {
- return fileNode;
- }
- set
- {
- fileNode = value;
- }
- }
- #endregion
-
- }
-}

Powered by Google App Engine
This is Rietveld 408576698