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

Unified Diff: experimental/visual_studio_plugin/third_party/Microsoft.VisualStudio.Project/Automation/OABuildManager.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/OABuildManager.cs
diff --git a/experimental/visual_studio_plugin/third_party/Microsoft.VisualStudio.Project/Automation/OABuildManager.cs b/experimental/visual_studio_plugin/third_party/Microsoft.VisualStudio.Project/Automation/OABuildManager.cs
deleted file mode 100644
index 63b52a5863995dc38af9454b0067db52ef8c36ac..0000000000000000000000000000000000000000
--- a/experimental/visual_studio_plugin/third_party/Microsoft.VisualStudio.Project/Automation/OABuildManager.cs
+++ /dev/null
@@ -1,79 +0,0 @@
-/// Copyright (c) Microsoft Corporation. All rights reserved.
-
-using System;
-using Microsoft.VisualStudio.Shell.Interop;
-using VSLangProj;
-using Microsoft.VisualStudio;
-
-namespace Microsoft.VisualStudio.Project.Automation
-{
- public class OABuildManager : ConnectionPointContainer,
- IEventSource<_dispBuildManagerEvents>,
- BuildManager,
- BuildManagerEvents
- {
- private ProjectNode projectManager;
-
- public OABuildManager(ProjectNode project)
- {
- projectManager = project;
- AddEventSource<_dispBuildManagerEvents>(this as IEventSource<_dispBuildManagerEvents>);
- }
-
-
- #region BuildManager Members
-
- public virtual string BuildDesignTimeOutput(string bstrOutputMoniker)
- {
- throw new NotImplementedException();
- }
-
- public virtual EnvDTE.Project ContainingProject
- {
- get { return projectManager.GetAutomationObject() as EnvDTE.Project; }
- }
-
- public virtual EnvDTE.DTE DTE
- {
- get { return projectManager.Site.GetService(typeof(EnvDTE.DTE)) as EnvDTE.DTE; }
- }
-
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1065:DoNotRaiseExceptionsInUnexpectedLocations")]
- public virtual object DesignTimeOutputMonikers
- {
- get { throw new NotImplementedException(); }
- }
-
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1065:DoNotRaiseExceptionsInUnexpectedLocations")]
- public virtual object Parent
- {
- get { throw new NotImplementedException(); }
- }
-
- #endregion
-
- #region _dispBuildManagerEvents_Event Members
-
- public event _dispBuildManagerEvents_DesignTimeOutputDeletedEventHandler DesignTimeOutputDeleted;
-
- public event _dispBuildManagerEvents_DesignTimeOutputDirtyEventHandler DesignTimeOutputDirty;
-
- #endregion
-
- #region IEventSource<_dispBuildManagerEvents> Members
-
- void IEventSource<_dispBuildManagerEvents>.OnSinkAdded(_dispBuildManagerEvents sink)
- {
- DesignTimeOutputDeleted += new _dispBuildManagerEvents_DesignTimeOutputDeletedEventHandler(sink.DesignTimeOutputDeleted);
- DesignTimeOutputDirty += new _dispBuildManagerEvents_DesignTimeOutputDirtyEventHandler(sink.DesignTimeOutputDirty);
- }
-
- void IEventSource<_dispBuildManagerEvents>.OnSinkRemoved(_dispBuildManagerEvents sink)
- {
- DesignTimeOutputDeleted -= new _dispBuildManagerEvents_DesignTimeOutputDeletedEventHandler(sink.DesignTimeOutputDeleted);
- DesignTimeOutputDirty -= new _dispBuildManagerEvents_DesignTimeOutputDirtyEventHandler(sink.DesignTimeOutputDirty);
- }
-
- #endregion
- }
-}

Powered by Google App Engine
This is Rietveld 408576698