| Index: experimental/visual_studio_plugin/third_party/Microsoft.VisualStudio.Project/ProjectOptions.cs
|
| diff --git a/experimental/visual_studio_plugin/third_party/Microsoft.VisualStudio.Project/ProjectOptions.cs b/experimental/visual_studio_plugin/third_party/Microsoft.VisualStudio.Project/ProjectOptions.cs
|
| deleted file mode 100644
|
| index a13a830dc5c9340f5749c7cdabd74ce964b8bb81..0000000000000000000000000000000000000000
|
| --- a/experimental/visual_studio_plugin/third_party/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;
|
| - }
|
| - }
|
| -}
|
|
|