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

Unified Diff: obsolete/Microsoft.VisualStudio.Project/ConfigurationProperties.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: obsolete/Microsoft.VisualStudio.Project/ConfigurationProperties.cs
diff --git a/obsolete/Microsoft.VisualStudio.Project/ConfigurationProperties.cs b/obsolete/Microsoft.VisualStudio.Project/ConfigurationProperties.cs
deleted file mode 100644
index 4662193c2296dc7fa9b52b39ad7aba112dc3b93a..0000000000000000000000000000000000000000
--- a/obsolete/Microsoft.VisualStudio.Project/ConfigurationProperties.cs
+++ /dev/null
@@ -1,52 +0,0 @@
-/// Copyright (c) Microsoft Corporation. All rights reserved.
-
-using System;
-using System.Runtime.InteropServices;
-
-namespace Microsoft.VisualStudio.Project
-{
- /// <summary>
- /// Defines the config dependent properties exposed through automation
- /// </summary>
- [ComVisible(true)]
- [Guid("21f73a8f-91d7-4085-9d4f-c48ee235ee5b")]
- public interface IProjectConfigProperties
- {
- string OutputPath { get; set; }
- }
-
- /// <summary>
- /// Implements the configuration dependent properties interface
- /// </summary>
- [CLSCompliant(false), ComVisible(true)]
- [ClassInterface(ClassInterfaceType.None)]
- public class ProjectConfigProperties : IProjectConfigProperties
- {
- #region fields
- private ProjectConfig projectConfig;
- #endregion
-
- #region ctors
- public ProjectConfigProperties(ProjectConfig projectConfig)
- {
- this.projectConfig = projectConfig;
- }
- #endregion
-
- #region IProjectConfigProperties Members
-
- public virtual string OutputPath
- {
- get
- {
- return this.projectConfig.GetConfigurationProperty(BuildPropertyPageTag.OutputPath.ToString(), true);
- }
- set
- {
- this.projectConfig.SetConfigurationProperty(BuildPropertyPageTag.OutputPath.ToString(), value);
- }
- }
-
- #endregion
- }
-}
« no previous file with comments | « obsolete/Microsoft.VisualStudio.Project/ConfigProvider.cs ('k') | obsolete/Microsoft.VisualStudio.Project/DataObject.cs » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698