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

Unified Diff: experimental/visual_studio_plugin/third_party/Microsoft.VisualStudio.Project/Automation/OAReferenceBase.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/OAReferenceBase.cs
diff --git a/experimental/visual_studio_plugin/third_party/Microsoft.VisualStudio.Project/Automation/OAReferenceBase.cs b/experimental/visual_studio_plugin/third_party/Microsoft.VisualStudio.Project/Automation/OAReferenceBase.cs
deleted file mode 100644
index dc8a73259828b69200e756d19fc2f8dc15cb9750..0000000000000000000000000000000000000000
--- a/experimental/visual_studio_plugin/third_party/Microsoft.VisualStudio.Project/Automation/OAReferenceBase.cs
+++ /dev/null
@@ -1,171 +0,0 @@
-/// Copyright (c) Microsoft Corporation. All rights reserved.
-
-using System;
-using System.Diagnostics.CodeAnalysis;
-using System.Runtime.InteropServices;
-using VSLangProj;
-
-namespace Microsoft.VisualStudio.Project.Automation
-{
- /// <summary>
- /// Represents the automation equivalent of ReferenceNode
- /// </summary>
- /// <typeparam name="RefType"></typeparam>
- [SuppressMessage("Microsoft.Naming", "CA1715:IdentifiersShouldHaveCorrectPrefix", MessageId = "T")]
- [ComVisible(true)]
- public abstract class OAReferenceBase<RefType> : Reference
- where RefType : ReferenceNode
- {
- #region fields
- private RefType referenceNode;
- #endregion
-
- #region ctors
- protected OAReferenceBase(RefType referenceNode)
- {
- this.referenceNode = referenceNode;
- }
- #endregion
-
- #region properties
- protected RefType BaseReferenceNode
- {
- get { return referenceNode; }
- }
- #endregion
-
- #region Reference Members
- public virtual int BuildNumber
- {
- get { return 0; }
- }
-
- public virtual References Collection
- {
- get
- {
- return BaseReferenceNode.Parent.Object as References;
- }
- }
-
- public virtual EnvDTE.Project ContainingProject
- {
- get
- {
- return BaseReferenceNode.ProjectMgr.GetAutomationObject() as EnvDTE.Project;
- }
- }
-
- public virtual bool CopyLocal
- {
- get
- {
- throw new NotImplementedException();
- }
- set
- {
- throw new NotImplementedException();
- }
- }
-
- public virtual string Culture
- {
- get { throw new NotImplementedException(); }
- }
-
- public virtual EnvDTE.DTE DTE
- {
- get
- {
- return BaseReferenceNode.ProjectMgr.Site.GetService(typeof(EnvDTE.DTE)) as EnvDTE.DTE;
- }
- }
-
- public virtual string Description
- {
- get
- {
- return this.Name;
- }
- }
-
- public virtual string ExtenderCATID
- {
- get { throw new NotImplementedException(); }
- }
-
- public virtual object ExtenderNames
- {
- get { throw new NotImplementedException(); }
- }
-
- public virtual string Identity
- {
- get { throw new NotImplementedException(); }
- }
-
- public virtual int MajorVersion
- {
- get { return 0; }
- }
-
- public virtual int MinorVersion
- {
- get { return 0; }
- }
-
- public virtual string Name
- {
- get { throw new NotImplementedException(); }
- }
-
- public virtual string Path
- {
- get
- {
- return BaseReferenceNode.Url;
- }
- }
-
- public virtual string PublicKeyToken
- {
- get { throw new NotImplementedException(); }
- }
-
- public virtual void Remove()
- {
- BaseReferenceNode.Remove(false);
- }
-
- public virtual int RevisionNumber
- {
- get { return 0; }
- }
-
- public virtual EnvDTE.Project SourceProject
- {
- get { return null; }
- }
-
- public virtual bool StrongName
- {
- get { return false; }
- }
-
- public virtual prjReferenceType Type
- {
- get { throw new NotImplementedException(); }
- }
-
- public virtual string Version
- {
- get { return new Version().ToString(); }
- }
-
- public virtual object get_Extender(string ExtenderName)
- {
- throw new NotImplementedException();
- }
- #endregion
- }
-}

Powered by Google App Engine
This is Rietveld 408576698