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

Unified Diff: obsolete/Microsoft.VisualStudio.Project/ProjectOptions.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/ProjectOptions.cs
diff --git a/obsolete/Microsoft.VisualStudio.Project/ProjectOptions.cs b/obsolete/Microsoft.VisualStudio.Project/ProjectOptions.cs
deleted file mode 100644
index b2cd66cef3b35e4f3720742818adfd7e5cbbf342..0000000000000000000000000000000000000000
--- a/obsolete/Microsoft.VisualStudio.Project/ProjectOptions.cs
+++ /dev/null
@@ -1,85 +0,0 @@
-/// Copyright (c) Microsoft Corporation. All rights reserved.
-
-using System.Collections.Specialized;
-using System.Diagnostics.CodeAnalysis;
-
-namespace Microsoft.VisualStudio.Project
-{
- public class ProjectOptions : System.CodeDom.Compiler.CompilerParameters
- {
- public ModuleKindFlags ModuleKind { get; set; }
-
- public bool EmitManifest { get; set; }
-
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public StringCollection DefinedPreprocessorSymbols { get; set; }
-
- public string XmlDocFileName { get; set; }
-
- public string RecursiveWildcard { get; set; }
-
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public StringCollection ReferencedModules { get; set; }
-
- public string Win32Icon { get; set; }
-
- public bool PdbOnly { get; set; }
-
- public bool Optimize { get; set; }
-
- public bool IncrementalCompile { get; set; }
-
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays")]
- public int[] SuppressedWarnings { get; set; }
-
- public bool CheckedArithmetic { get; set; }
-
- public bool AllowUnsafeCode { get; set; }
-
- public bool DisplayCommandLineHelp { get; set; }
-
- public bool SuppressLogo { get; set; }
-
- public long BaseAddress { get; set; }
-
- public string BugReportFileName { get; set; }
-
- /// <devdoc>must be an int if not null</devdoc>
- public object CodePage { get; set; }
-
- public bool EncodeOutputInUtf8 { get; set; }
-
- public bool FullyQualifyPaths { get; set; }
-
- public int FileAlignment { get; set; }
-
- public bool NoStandardLibrary { get; set; }
-
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public StringCollection AdditionalSearchPaths { get; set; }
-
- public bool HeuristicReferenceResolution { get; set; }
-
- public string RootNamespace { get; set; }
-
- public bool CompileAndExecute { get; set; }
-
- /// <devdoc>must be an int if not null.</devdoc>
- public object UserLocaleId { get; set; }
-
- public PlatformType TargetPlatform { get; set; }
-
- public string TargetPlatformLocation { get; set; }
-
- public ProjectOptions()
- {
- EmitManifest = true;
- ModuleKind = ModuleKindFlags.ConsoleApplication;
- }
-
- public virtual string GetOptionHelp()
- {
- return null;
- }
- }
-}

Powered by Google App Engine
This is Rietveld 408576698