mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
132 lines
5.4 KiB
C#
132 lines
5.4 KiB
C#
/********************************************************************************************
|
|
|
|
Copyright (c) Microsoft Corporation
|
|
All rights reserved.
|
|
|
|
Microsoft Public License:
|
|
|
|
This license governs use of the accompanying software. If you use the software, you
|
|
accept this license. If you do not accept the license, do not use the software.
|
|
|
|
1. Definitions
|
|
The terms "reproduce," "reproduction," "derivative works," and "distribution" have the
|
|
same meaning here as under U.S. copyright law.
|
|
A "contribution" is the original software, or any additions or changes to the software.
|
|
A "contributor" is any person that distributes its contribution under this license.
|
|
"Licensed patents" are a contributor's patent claims that read directly on its contribution.
|
|
|
|
2. Grant of Rights
|
|
(A) Copyright Grant- Subject to the terms of this license, including the license conditions
|
|
and limitations in section 3, each contributor grants you a non-exclusive, worldwide,
|
|
royalty-free copyright license to reproduce its contribution, prepare derivative works of
|
|
its contribution, and distribute its contribution or any derivative works that you create.
|
|
(B) Patent Grant- Subject to the terms of this license, including the license conditions
|
|
and limitations in section 3, each contributor grants you a non-exclusive, worldwide,
|
|
royalty-free license under its licensed patents to make, have made, use, sell, offer for
|
|
sale, import, and/or otherwise dispose of its contribution in the software or derivative
|
|
works of the contribution in the software.
|
|
|
|
3. Conditions and Limitations
|
|
(A) No Trademark License- This license does not grant you rights to use any contributors'
|
|
name, logo, or trademarks.
|
|
(B) If you bring a patent claim against any contributor over patents that you claim are
|
|
infringed by the software, your patent license from such contributor to the software ends
|
|
automatically.
|
|
(C) If you distribute any portion of the software, you must retain all copyright, patent,
|
|
trademark, and attribution notices that are present in the software.
|
|
(D) If you distribute any portion of the software in source code form, you may do so only
|
|
under this license by including a complete copy of this license with your distribution.
|
|
If you distribute any portion of the software in compiled or object code form, you may only
|
|
do so under a license that complies with this license.
|
|
(E) The software is licensed "as-is." You bear the risk of using it. The contributors give
|
|
no express warranties, guarantees or conditions. You may have additional consumer rights
|
|
under your local laws which this license cannot change. To the extent permitted under your
|
|
local laws, the contributors exclude the implied warranties of merchantability, fitness for
|
|
a particular purpose and non-infringement.
|
|
|
|
********************************************************************************************/
|
|
|
|
using System.Collections.Specialized;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using System.Runtime.Versioning;
|
|
|
|
namespace Microsoft.VisualStudio.Project
|
|
{
|
|
public class ProjectOptions : System.CodeDom.Compiler.CompilerParameters
|
|
{
|
|
public string Config { get; set; }
|
|
|
|
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 FrameworkName TargetFrameworkMoniker { get; set; }
|
|
|
|
public ProjectOptions()
|
|
{
|
|
EmitManifest = true;
|
|
ModuleKind = ModuleKindFlags.ConsoleApplication;
|
|
}
|
|
|
|
public virtual string GetOptionHelp()
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|