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

Unified Diff: experimental/visual_studio_plugin/third_party/Microsoft.VisualStudio.Project/NestedProjectBuildDependency.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/NestedProjectBuildDependency.cs
diff --git a/experimental/visual_studio_plugin/third_party/Microsoft.VisualStudio.Project/NestedProjectBuildDependency.cs b/experimental/visual_studio_plugin/third_party/Microsoft.VisualStudio.Project/NestedProjectBuildDependency.cs
deleted file mode 100644
index 75a7a258943abef9fb952ef824df3ba07f45dddf..0000000000000000000000000000000000000000
--- a/experimental/visual_studio_plugin/third_party/Microsoft.VisualStudio.Project/NestedProjectBuildDependency.cs
+++ /dev/null
@@ -1,75 +0,0 @@
-/// Copyright (c) Microsoft Corporation. All rights reserved.
-
-using System;
-using Microsoft.VisualStudio;
-using Microsoft.VisualStudio.Shell.Interop;
-
-namespace Microsoft.VisualStudio.Project
-{
- /// <summary>
- /// Used for adding a build dependency to nested project (not a real project reference)
- /// </summary>
- public class NestedProjectBuildDependency : IVsBuildDependency
- {
- IVsHierarchy dependentHierarchy = null;
-
- #region ctors
- [CLSCompliant(false)]
- public NestedProjectBuildDependency(IVsHierarchy dependentHierarchy)
- {
- this.dependentHierarchy = dependentHierarchy;
- }
- #endregion
-
- #region IVsBuildDependency methods
- public int get_CanonicalName(out string canonicalName)
- {
- canonicalName = null;
- return VSConstants.S_OK;
- }
-
- public int get_Type(out System.Guid guidType)
- {
- // All our dependencies are build projects
- guidType = VSConstants.GUID_VS_DEPTYPE_BUILD_PROJECT;
-
- return VSConstants.S_OK;
- }
-
- public int get_Description(out string description)
- {
- description = null;
- return VSConstants.S_OK;
- }
-
- [CLSCompliant(false)]
- public int get_HelpContext(out uint helpContext)
- {
- helpContext = 0;
- return VSConstants.E_NOTIMPL;
- }
-
- public int get_HelpFile(out string helpFile)
- {
- helpFile = null;
- return VSConstants.E_NOTIMPL;
- }
-
- public int get_MustUpdateBefore(out int mustUpdateBefore)
- {
- // Must always update dependencies
- mustUpdateBefore = 1;
-
- return VSConstants.S_OK;
- }
-
- public int get_ReferredProject(out object unknownProject)
- {
- unknownProject = this.dependentHierarchy;
-
- return (unknownProject == null) ? VSConstants.E_FAIL : VSConstants.S_OK;
- }
- #endregion
-
- }
-}

Powered by Google App Engine
This is Rietveld 408576698