1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
4 
5 [assembly:System.Reflection.AssemblyVersionAttribute("4.0.0.0")]
6 [assembly:System.CLSCompliantAttribute(true)]
7 [assembly:System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute.DebuggingModes)(2))]
8 [assembly:System.Reflection.AssemblyCompanyAttribute("Mono development team")]
9 [assembly:System.Reflection.AssemblyCopyrightAttribute("(c) Various Mono authors")]
10 [assembly:System.Reflection.AssemblyDefaultAliasAttribute("Microsoft.Build.dll")]
11 [assembly:System.Reflection.AssemblyDescriptionAttribute("Microsoft.Build.dll")]
12 [assembly:System.Reflection.AssemblyFileVersionAttribute("4.6.57.0")]
13 [assembly:System.Reflection.AssemblyInformationalVersionAttribute("4.6.57.0")]
14 [assembly:System.Reflection.AssemblyProductAttribute("Mono Common Language Infrastructure")]
15 [assembly:System.Reflection.AssemblyTitleAttribute("Microsoft.Build.dll")]
16 [assembly:System.Resources.NeutralResourcesLanguageAttribute("en-US")]
17 [assembly:System.Resources.SatelliteContractVersionAttribute("4.0.0.0")]
18 [assembly:System.Runtime.CompilerServices.CompilationRelaxationsAttribute((System.Runtime.CompilerServices.CompilationRelaxations)(8))]
19 [assembly:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)]
20 [assembly:System.Runtime.InteropServices.ComVisibleAttribute(false)]
21 namespace Microsoft.Build.Construction
22 {
23     [System.SerializableAttribute]
24     public abstract partial class ElementLocation
25     {
ElementLocation()26         protected ElementLocation() { }
27         public abstract int Column { get; }
28         public abstract string File { get; }
29         public abstract int Line { get; }
30         public string LocationString { get { throw null; } }
Equals(object obj)31         public override bool Equals(object obj) { throw null; }
GetHashCode()32         public override int GetHashCode() { throw null; }
33     }
34     [System.Diagnostics.DebuggerDisplayAttribute("ProjectChooseElement (#Children={Count} HasOtherwise={OtherwiseElement != null})")]
35     public partial class ProjectChooseElement : Microsoft.Build.Construction.ProjectElementContainer
36     {
ProjectChooseElement()37         internal ProjectChooseElement() { }
38         public override string Condition { get { throw null; } set { } }
39         public Microsoft.Build.Construction.ProjectOtherwiseElement OtherwiseElement { get { throw null; } }
40         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectWhenElement> WhenElements { get { throw null; } }
41     }
42     public abstract partial class ProjectElement
43     {
ProjectElement()44         internal ProjectElement() { }
45         public System.Collections.Generic.IEnumerable<Microsoft.Build.Construction.ProjectElementContainer> AllParents { get { throw null; } }
46         public virtual string Condition { get { throw null; } set { } }
47         public Microsoft.Build.Construction.ElementLocation ConditionLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
48         public Microsoft.Build.Construction.ProjectRootElement ContainingProject { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
49         public string Label { get { throw null; } set { } }
50         public Microsoft.Build.Construction.ElementLocation LabelLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
51         public Microsoft.Build.Construction.ElementLocation Location { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
52         public Microsoft.Build.Construction.ProjectElement NextSibling { get { throw null; } }
53         public Microsoft.Build.Construction.ProjectElementContainer Parent { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
54         public Microsoft.Build.Construction.ProjectElement PreviousSibling { get { throw null; } }
55     }
56     public abstract partial class ProjectElementContainer : Microsoft.Build.Construction.ProjectElement
57     {
ProjectElementContainer()58         internal ProjectElementContainer() { }
59         public System.Collections.Generic.IEnumerable<Microsoft.Build.Construction.ProjectElement> AllChildren { get { throw null; } }
60         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectElement> Children { get { throw null; } }
61         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectElement> ChildrenReversed { get { throw null; } }
62         public int Count { get { throw null; } }
63         public Microsoft.Build.Construction.ProjectElement FirstChild { get { throw null; } }
64         public Microsoft.Build.Construction.ProjectElement LastChild { get { throw null; } }
AppendChild(Microsoft.Build.Construction.ProjectElement child)65         public void AppendChild(Microsoft.Build.Construction.ProjectElement child) { }
InsertAfterChild(Microsoft.Build.Construction.ProjectElement child, Microsoft.Build.Construction.ProjectElement reference)66         public void InsertAfterChild(Microsoft.Build.Construction.ProjectElement child, Microsoft.Build.Construction.ProjectElement reference) { }
InsertBeforeChild(Microsoft.Build.Construction.ProjectElement child, Microsoft.Build.Construction.ProjectElement reference)67         public void InsertBeforeChild(Microsoft.Build.Construction.ProjectElement child, Microsoft.Build.Construction.ProjectElement reference) { }
PrependChild(Microsoft.Build.Construction.ProjectElement child)68         public void PrependChild(Microsoft.Build.Construction.ProjectElement child) { }
RemoveAllChildren()69         public void RemoveAllChildren() { }
RemoveChild(Microsoft.Build.Construction.ProjectElement child)70         public void RemoveChild(Microsoft.Build.Construction.ProjectElement child) { }
71     }
72     public partial class ProjectExtensionsElement : Microsoft.Build.Construction.ProjectElement
73     {
ProjectExtensionsElement()74         internal ProjectExtensionsElement() { }
75         public override string Condition { get { throw null; } set { } }
76         public string Content { get { throw null; } set { } }
77         public string this[string name] { get { throw null; } set { } }
78     }
79     [System.Diagnostics.DebuggerDisplayAttribute("Project={Project} Condition={Condition}")]
80     public partial class ProjectImportElement : Microsoft.Build.Construction.ProjectElement
81     {
ProjectImportElement()82         internal ProjectImportElement() { }
83         public string Project { get { throw null; } set { } }
84     }
85     [System.Diagnostics.DebuggerDisplayAttribute("#Imports={Count} Condition={Condition} Label={Label}")]
86     public partial class ProjectImportGroupElement : Microsoft.Build.Construction.ProjectElementContainer
87     {
ProjectImportGroupElement()88         internal ProjectImportGroupElement() { }
89         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectImportElement> Imports { get { throw null; } }
AddImport(string project)90         public Microsoft.Build.Construction.ProjectImportElement AddImport(string project) { throw null; }
91     }
92     [System.Diagnostics.DebuggerDisplayAttribute("{ItemType} #Metadata={Count} Condition={Condition}")]
93     public partial class ProjectItemDefinitionElement : Microsoft.Build.Construction.ProjectElementContainer
94     {
ProjectItemDefinitionElement()95         internal ProjectItemDefinitionElement() { }
96         public string ItemType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
97         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectMetadataElement> Metadata { get { throw null; } }
AddMetadata(string name, string unevaluatedValue)98         public Microsoft.Build.Construction.ProjectMetadataElement AddMetadata(string name, string unevaluatedValue) { throw null; }
99     }
100     [System.Diagnostics.DebuggerDisplayAttribute("#ItemDefinitions={Count} Condition={Condition} Label={Label}")]
101     public partial class ProjectItemDefinitionGroupElement : Microsoft.Build.Construction.ProjectElementContainer
102     {
ProjectItemDefinitionGroupElement()103         internal ProjectItemDefinitionGroupElement() { }
104         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemDefinitionElement> ItemDefinitions { get { throw null; } }
AddItemDefinition(string itemType)105         public Microsoft.Build.Construction.ProjectItemDefinitionElement AddItemDefinition(string itemType) { throw null; }
106     }
107     [System.Diagnostics.DebuggerDisplayAttribute("{ItemType} Include={Include} Exclude={Exclude} #Metadata={Count} Condition={Condition}")]
108     public partial class ProjectItemElement : Microsoft.Build.Construction.ProjectElementContainer
109     {
ProjectItemElement()110         internal ProjectItemElement() { }
111         public string Exclude { get { throw null; } set { } }
112         public Microsoft.Build.Construction.ElementLocation ExcludeLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
113         public bool HasMetadata { get { throw null; } }
114         public string Include { get { throw null; } set { } }
115         public Microsoft.Build.Construction.ElementLocation IncludeLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
116         public string ItemType { get { throw null; } set { } }
117         public string KeepDuplicates { get { throw null; } set { } }
118         public Microsoft.Build.Construction.ElementLocation KeepDuplicatesLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
119         public string KeepMetadata { get { throw null; } set { } }
120         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectMetadataElement> Metadata { get { throw null; } }
121         public string Remove { get { throw null; } set { } }
122         public Microsoft.Build.Construction.ElementLocation RemoveLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
123         public string RemoveMetadata { get { throw null; } set { } }
124         public Microsoft.Build.Construction.ElementLocation RemoveMetadataLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
AddMetadata(string name, string unevaluatedValue)125         public Microsoft.Build.Construction.ProjectMetadataElement AddMetadata(string name, string unevaluatedValue) { throw null; }
126     }
127     [System.Diagnostics.DebuggerDisplayAttribute("#Items={Count} Condition={Condition} Label={Label}")]
128     public partial class ProjectItemGroupElement : Microsoft.Build.Construction.ProjectElementContainer
129     {
ProjectItemGroupElement()130         internal ProjectItemGroupElement() { }
131         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemElement> Items { get { throw null; } }
AddItem(string itemType, string include)132         public Microsoft.Build.Construction.ProjectItemElement AddItem(string itemType, string include) { throw null; }
AddItem(string itemType, string include, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, string>> metadata)133         public Microsoft.Build.Construction.ProjectItemElement AddItem(string itemType, string include, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, string>> metadata) { throw null; }
134     }
135     [System.Diagnostics.DebuggerDisplayAttribute("{Name} Value={Value} Condition={Condition}")]
136     public partial class ProjectMetadataElement : Microsoft.Build.Construction.ProjectElement
137     {
ProjectMetadataElement()138         internal ProjectMetadataElement() { }
139         public string Name { get { throw null; } set { } }
140         public string Value { get { throw null; } set { } }
141     }
142     [System.Diagnostics.DebuggerDisplayAttribute("ExecuteTargets={ExecuteTargets}")]
143     public partial class ProjectOnErrorElement : Microsoft.Build.Construction.ProjectElement
144     {
ProjectOnErrorElement()145         internal ProjectOnErrorElement() { }
146         public string ExecuteTargetsAttribute { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
147         public Microsoft.Build.Construction.ElementLocation ExecuteTargetsAttributeLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
148     }
149     [System.Diagnostics.DebuggerDisplayAttribute("#Children={Count}")]
150     public partial class ProjectOtherwiseElement : Microsoft.Build.Construction.ProjectElementContainer
151     {
ProjectOtherwiseElement()152         internal ProjectOtherwiseElement() { }
153         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectChooseElement> ChooseElements { get { throw null; } }
154         public override string Condition { get { throw null; } set { } }
155         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemGroupElement> ItemGroups { get { throw null; } }
156         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectPropertyGroupElement> PropertyGroups { get { throw null; } }
157     }
158     [System.Diagnostics.DebuggerDisplayAttribute("Name={Name} TaskParameter={TaskParameter} ItemName={ItemName} PropertyName={PropertyName} Condition={Condition}")]
159     public partial class ProjectOutputElement : Microsoft.Build.Construction.ProjectElement
160     {
ProjectOutputElement()161         internal ProjectOutputElement() { }
162         public bool IsOutputItem { get { throw null; } }
163         public bool IsOutputProperty { get { throw null; } }
164         public string ItemType { get { throw null; } set { } }
165         public string PropertyName { get { throw null; } set { } }
166         public string TaskParameter { get { throw null; } set { } }
167         public Microsoft.Build.Construction.ElementLocation TaskParameterLocation { get { throw null; } set { } }
168     }
169     [System.Diagnostics.DebuggerDisplayAttribute("{Name} Value={Value} Condition={Condition}")]
170     public partial class ProjectPropertyElement : Microsoft.Build.Construction.ProjectElement
171     {
ProjectPropertyElement()172         internal ProjectPropertyElement() { }
173         public string Name { get { throw null; } set { } }
174         public string Value { get { throw null; } set { } }
175     }
176     [System.Diagnostics.DebuggerDisplayAttribute("#Properties={Count} Condition={Condition} Label={Label}")]
177     public partial class ProjectPropertyGroupElement : Microsoft.Build.Construction.ProjectElementContainer
178     {
ProjectPropertyGroupElement()179         internal ProjectPropertyGroupElement() { }
180         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectPropertyElement> Properties { get { throw null; } }
181         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectPropertyElement> PropertiesReversed { get { throw null; } }
AddProperty(string name, string unevaluatedValue)182         public Microsoft.Build.Construction.ProjectPropertyElement AddProperty(string name, string unevaluatedValue) { throw null; }
SetProperty(string name, string unevaluatedValue)183         public Microsoft.Build.Construction.ProjectPropertyElement SetProperty(string name, string unevaluatedValue) { throw null; }
184     }
185     [System.Diagnostics.DebuggerDisplayAttribute("{FullPath} #Children={Count} DefaultTargets={DefaultTargets} ToolsVersion={ToolsVersion} InitialTargets={InitialTargets}")]
186     public partial class ProjectRootElement : Microsoft.Build.Construction.ProjectElementContainer
187     {
ProjectRootElement()188         internal ProjectRootElement() { }
189         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectChooseElement> ChooseElements { get { throw null; } }
190         public override string Condition { get { throw null; } set { } }
191         public string DefaultTargets { get { throw null; } set { } }
192         public string DirectoryPath { get { throw null; } set { } }
193         public System.Text.Encoding Encoding { get { throw null; } }
194         public string FullPath { get { throw null; } set { } }
195         public bool HasUnsavedChanges { get { throw null; } }
196         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectImportGroupElement> ImportGroups { get { throw null; } }
197         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectImportGroupElement> ImportGroupsReversed { get { throw null; } }
198         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectImportElement> Imports { get { throw null; } }
199         public string InitialTargets { get { throw null; } set { } }
200         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemDefinitionGroupElement> ItemDefinitionGroups { get { throw null; } }
201         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemDefinitionGroupElement> ItemDefinitionGroupsReversed { get { throw null; } }
202         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemDefinitionElement> ItemDefinitions { get { throw null; } }
203         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemGroupElement> ItemGroups { get { throw null; } }
204         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemGroupElement> ItemGroupsReversed { get { throw null; } }
205         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemElement> Items { get { throw null; } }
206         public System.DateTime LastWriteTimeWhenRead { get { throw null; } }
207         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectPropertyElement> Properties { get { throw null; } }
208         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectPropertyGroupElement> PropertyGroups { get { throw null; } }
209         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectPropertyGroupElement> PropertyGroupsReversed { get { throw null; } }
210         public string RawXml { get { throw null; } }
211         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectTargetElement> Targets { get { throw null; } }
212         public System.DateTime TimeLastChanged { get { throw null; } }
213         public string ToolsVersion { get { throw null; } set { } }
214         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectUsingTaskElement> UsingTasks { get { throw null; } }
215         public int Version { get { throw null; } }
AddImport(string project)216         public Microsoft.Build.Construction.ProjectImportElement AddImport(string project) { throw null; }
AddImportGroup()217         public Microsoft.Build.Construction.ProjectImportGroupElement AddImportGroup() { throw null; }
AddItem(string itemType, string include)218         public Microsoft.Build.Construction.ProjectItemElement AddItem(string itemType, string include) { throw null; }
AddItem(string itemType, string include, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, string>> metadata)219         public Microsoft.Build.Construction.ProjectItemElement AddItem(string itemType, string include, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, string>> metadata) { throw null; }
AddItemDefinition(string itemType)220         public Microsoft.Build.Construction.ProjectItemDefinitionElement AddItemDefinition(string itemType) { throw null; }
AddItemDefinitionGroup()221         public Microsoft.Build.Construction.ProjectItemDefinitionGroupElement AddItemDefinitionGroup() { throw null; }
AddItemGroup()222         public Microsoft.Build.Construction.ProjectItemGroupElement AddItemGroup() { throw null; }
AddProperty(string name, string value)223         public Microsoft.Build.Construction.ProjectPropertyElement AddProperty(string name, string value) { throw null; }
AddPropertyGroup()224         public Microsoft.Build.Construction.ProjectPropertyGroupElement AddPropertyGroup() { throw null; }
AddTarget(string name)225         public Microsoft.Build.Construction.ProjectTargetElement AddTarget(string name) { throw null; }
AddUsingTask(string name, string assemblyFile, string assemblyName)226         public Microsoft.Build.Construction.ProjectUsingTaskElement AddUsingTask(string name, string assemblyFile, string assemblyName) { throw null; }
Create()227         public static Microsoft.Build.Construction.ProjectRootElement Create() { throw null; }
Create(Microsoft.Build.Evaluation.ProjectCollection projectCollection)228         public static Microsoft.Build.Construction.ProjectRootElement Create(Microsoft.Build.Evaluation.ProjectCollection projectCollection) { throw null; }
Create(string path)229         public static Microsoft.Build.Construction.ProjectRootElement Create(string path) { throw null; }
Create(string path, Microsoft.Build.Evaluation.ProjectCollection projectCollection)230         public static Microsoft.Build.Construction.ProjectRootElement Create(string path, Microsoft.Build.Evaluation.ProjectCollection projectCollection) { throw null; }
Create(System.Xml.XmlReader xmlReader)231         public static Microsoft.Build.Construction.ProjectRootElement Create(System.Xml.XmlReader xmlReader) { throw null; }
Create(System.Xml.XmlReader xmlReader, Microsoft.Build.Evaluation.ProjectCollection projectCollection)232         public static Microsoft.Build.Construction.ProjectRootElement Create(System.Xml.XmlReader xmlReader, Microsoft.Build.Evaluation.ProjectCollection projectCollection) { throw null; }
CreateChooseElement()233         public Microsoft.Build.Construction.ProjectChooseElement CreateChooseElement() { throw null; }
CreateImportElement(string project)234         public Microsoft.Build.Construction.ProjectImportElement CreateImportElement(string project) { throw null; }
CreateImportGroupElement()235         public Microsoft.Build.Construction.ProjectImportGroupElement CreateImportGroupElement() { throw null; }
CreateItemDefinitionElement(string itemType)236         public Microsoft.Build.Construction.ProjectItemDefinitionElement CreateItemDefinitionElement(string itemType) { throw null; }
CreateItemDefinitionGroupElement()237         public Microsoft.Build.Construction.ProjectItemDefinitionGroupElement CreateItemDefinitionGroupElement() { throw null; }
CreateItemElement(string itemType)238         public Microsoft.Build.Construction.ProjectItemElement CreateItemElement(string itemType) { throw null; }
CreateItemElement(string itemType, string include)239         public Microsoft.Build.Construction.ProjectItemElement CreateItemElement(string itemType, string include) { throw null; }
CreateItemGroupElement()240         public Microsoft.Build.Construction.ProjectItemGroupElement CreateItemGroupElement() { throw null; }
CreateMetadataElement(string name)241         public Microsoft.Build.Construction.ProjectMetadataElement CreateMetadataElement(string name) { throw null; }
CreateMetadataElement(string name, string unevaluatedValue)242         public Microsoft.Build.Construction.ProjectMetadataElement CreateMetadataElement(string name, string unevaluatedValue) { throw null; }
CreateOnErrorElement(string executeTargets)243         public Microsoft.Build.Construction.ProjectOnErrorElement CreateOnErrorElement(string executeTargets) { throw null; }
CreateOtherwiseElement()244         public Microsoft.Build.Construction.ProjectOtherwiseElement CreateOtherwiseElement() { throw null; }
CreateOutputElement(string taskParameter, string itemType, string propertyName)245         public Microsoft.Build.Construction.ProjectOutputElement CreateOutputElement(string taskParameter, string itemType, string propertyName) { throw null; }
CreateProjectExtensionsElement()246         public Microsoft.Build.Construction.ProjectExtensionsElement CreateProjectExtensionsElement() { throw null; }
CreatePropertyElement(string name)247         public Microsoft.Build.Construction.ProjectPropertyElement CreatePropertyElement(string name) { throw null; }
CreatePropertyGroupElement()248         public Microsoft.Build.Construction.ProjectPropertyGroupElement CreatePropertyGroupElement() { throw null; }
CreateTargetElement(string name)249         public Microsoft.Build.Construction.ProjectTargetElement CreateTargetElement(string name) { throw null; }
CreateTaskElement(string name)250         public Microsoft.Build.Construction.ProjectTaskElement CreateTaskElement(string name) { throw null; }
CreateUsingTaskBodyElement(string evaluate, string body)251         public Microsoft.Build.Construction.ProjectUsingTaskBodyElement CreateUsingTaskBodyElement(string evaluate, string body) { throw null; }
CreateUsingTaskElement(string taskName, string assemblyFile, string assemblyName)252         public Microsoft.Build.Construction.ProjectUsingTaskElement CreateUsingTaskElement(string taskName, string assemblyFile, string assemblyName) { throw null; }
CreateUsingTaskParameterElement(string name, string output, string required, string parameterType)253         public Microsoft.Build.Construction.ProjectUsingTaskParameterElement CreateUsingTaskParameterElement(string name, string output, string required, string parameterType) { throw null; }
CreateUsingTaskParameterGroupElement()254         public Microsoft.Build.Construction.UsingTaskParameterGroupElement CreateUsingTaskParameterGroupElement() { throw null; }
CreateWhenElement(string condition)255         public Microsoft.Build.Construction.ProjectWhenElement CreateWhenElement(string condition) { throw null; }
Open(string path)256         public static Microsoft.Build.Construction.ProjectRootElement Open(string path) { throw null; }
Open(string path, Microsoft.Build.Evaluation.ProjectCollection projectCollection)257         public static Microsoft.Build.Construction.ProjectRootElement Open(string path, Microsoft.Build.Evaluation.ProjectCollection projectCollection) { throw null; }
Save()258         public void Save() { }
Save(System.IO.TextWriter writer)259         public void Save(System.IO.TextWriter writer) { }
Save(string path)260         public void Save(string path) { }
Save(string path, System.Text.Encoding encoding)261         public void Save(string path, System.Text.Encoding encoding) { }
Save(System.Text.Encoding saveEncoding)262         public void Save(System.Text.Encoding saveEncoding) { }
TryOpen(string path)263         public static Microsoft.Build.Construction.ProjectRootElement TryOpen(string path) { throw null; }
TryOpen(string path, Microsoft.Build.Evaluation.ProjectCollection projectCollection)264         public static Microsoft.Build.Construction.ProjectRootElement TryOpen(string path, Microsoft.Build.Evaluation.ProjectCollection projectCollection) { throw null; }
265     }
266     [System.Diagnostics.DebuggerDisplayAttribute("Name={Name} #Children={Count} Condition={Condition}")]
267     public partial class ProjectTargetElement : Microsoft.Build.Construction.ProjectElementContainer
268     {
ProjectTargetElement()269         internal ProjectTargetElement() { }
270         public string AfterTargets { get { throw null; } set { } }
271         public Microsoft.Build.Construction.ElementLocation AfterTargetsLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
272         public string BeforeTargets { get { throw null; } set { } }
273         public Microsoft.Build.Construction.ElementLocation BeforeTargetsLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
274         public string DependsOnTargets { get { throw null; } set { } }
275         public Microsoft.Build.Construction.ElementLocation DependsOnTargetsLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
276         public string Inputs { get { throw null; } set { } }
277         public Microsoft.Build.Construction.ElementLocation InputsLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
278         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemGroupElement> ItemGroups { get { throw null; } }
279         public string KeepDuplicateOutputs { get { throw null; } set { } }
280         public Microsoft.Build.Construction.ElementLocation KeepDuplicateOutputsLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
281         public string Name { get { throw null; } set { } }
282         public Microsoft.Build.Construction.ElementLocation NameLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
283         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectOnErrorElement> OnErrors { get { throw null; } }
284         public string Outputs { get { throw null; } set { } }
285         public Microsoft.Build.Construction.ElementLocation OutputsLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
286         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectPropertyGroupElement> PropertyGroups { get { throw null; } }
287         public string Returns { get { throw null; } set { } }
288         public Microsoft.Build.Construction.ElementLocation ReturnsLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
289         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectTaskElement> Tasks { get { throw null; } }
AddItemGroup()290         public Microsoft.Build.Construction.ProjectItemGroupElement AddItemGroup() { throw null; }
AddPropertyGroup()291         public Microsoft.Build.Construction.ProjectPropertyGroupElement AddPropertyGroup() { throw null; }
AddTask(string taskName)292         public Microsoft.Build.Construction.ProjectTaskElement AddTask(string taskName) { throw null; }
293     }
294     [System.Diagnostics.DebuggerDisplayAttribute("{Name} Condition={Condition} ContinueOnError={ContinueOnError} #Outputs={Count}")]
295     public partial class ProjectTaskElement : Microsoft.Build.Construction.ProjectElementContainer
296     {
ProjectTaskElement()297         internal ProjectTaskElement() { }
298         public string ContinueOnError { get { throw null; } set { } }
299         public Microsoft.Build.Construction.ElementLocation ContinueOnErrorLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
300         public string ExecuteTargets { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
301         public Microsoft.Build.Construction.ElementLocation ExecuteTargetsLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
302         public string MSBuildArchitecture { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
303         public Microsoft.Build.Construction.ElementLocation MSBuildArchitectureLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
304         public string MSBuildRuntime { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
305         public Microsoft.Build.Construction.ElementLocation MSBuildRuntimeLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
306         public string Name { get { throw null; } }
307         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectOutputElement> Outputs { get { throw null; } }
308         public System.Collections.Generic.IDictionary<string, string> Parameters { get { throw null; } }
AddOutputItem(string taskParameter, string itemType)309         public Microsoft.Build.Construction.ProjectOutputElement AddOutputItem(string taskParameter, string itemType) { throw null; }
AddOutputItem(string taskParameter, string itemType, string condition)310         public Microsoft.Build.Construction.ProjectOutputElement AddOutputItem(string taskParameter, string itemType, string condition) { throw null; }
AddOutputProperty(string taskParameter, string propertyName)311         public Microsoft.Build.Construction.ProjectOutputElement AddOutputProperty(string taskParameter, string propertyName) { throw null; }
AddOutputProperty(string taskParameter, string propertyName, string condition)312         public Microsoft.Build.Construction.ProjectOutputElement AddOutputProperty(string taskParameter, string propertyName, string condition) { throw null; }
GetParameter(string name)313         public string GetParameter(string name) { throw null; }
RemoveAllParameters()314         public void RemoveAllParameters() { }
RemoveParameter(string name)315         public void RemoveParameter(string name) { }
SetParameter(string name, string unevaluatedValue)316         public void SetParameter(string name, string unevaluatedValue) { }
317     }
318     [System.Diagnostics.DebuggerDisplayAttribute("Evaluate={Evaluate} TaskBody={TaskBody}")]
319     public partial class ProjectUsingTaskBodyElement : Microsoft.Build.Construction.ProjectElement
320     {
ProjectUsingTaskBodyElement()321         internal ProjectUsingTaskBodyElement() { }
322         public override string Condition { get { throw null; } set { } }
323         public string Evaluate { get { throw null; } set { } }
324         public string TaskBody { get { throw null; } set { } }
325     }
326     [System.Diagnostics.DebuggerDisplayAttribute("TaskName={TaskName} AssemblyName={AssemblyName} AssemblyFile={AssemblyFile} Condition={Condition} Runtime={RequiredRuntime} Platform={RequiredPlatform}")]
327     public partial class ProjectUsingTaskElement : Microsoft.Build.Construction.ProjectElementContainer
328     {
ProjectUsingTaskElement()329         internal ProjectUsingTaskElement() { }
330         public string AssemblyFile { get { throw null; } set { } }
331         public string AssemblyName { get { throw null; } set { } }
332         public Microsoft.Build.Construction.UsingTaskParameterGroupElement ParameterGroup { get { throw null; } }
333         public Microsoft.Build.Construction.ProjectUsingTaskBodyElement TaskBody { get { throw null; } }
334         public string TaskFactory { get { throw null; } set { } }
335         public string TaskName { get { throw null; } set { } }
AddParameterGroup()336         public Microsoft.Build.Construction.UsingTaskParameterGroupElement AddParameterGroup() { throw null; }
AddUsingTaskBody(string evaluate, string taskBody)337         public Microsoft.Build.Construction.ProjectUsingTaskBodyElement AddUsingTaskBody(string evaluate, string taskBody) { throw null; }
338     }
339     [System.Diagnostics.DebuggerDisplayAttribute("Name={Name} ParameterType={ParameterType} Output={Output}")]
340     public partial class ProjectUsingTaskParameterElement : Microsoft.Build.Construction.ProjectElement
341     {
ProjectUsingTaskParameterElement()342         internal ProjectUsingTaskParameterElement() { }
343         public override string Condition { get { throw null; } set { } }
344         public string Name { get { throw null; } set { } }
345         public string Output { get { throw null; } set { } }
346         public string ParameterType { get { throw null; } set { } }
347         public string Required { get { throw null; } set { } }
348     }
349     [System.Diagnostics.DebuggerDisplayAttribute("#Children={Count} Condition={Condition}")]
350     public partial class ProjectWhenElement : Microsoft.Build.Construction.ProjectElementContainer
351     {
ProjectWhenElement()352         internal ProjectWhenElement() { }
353         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectChooseElement> ChooseElements { get { throw null; } }
354         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemGroupElement> ItemGroups { get { throw null; } }
355         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectPropertyGroupElement> PropertyGroups { get { throw null; } }
356     }
357     [System.Diagnostics.DebuggerDisplayAttribute("#Parameters={Count}")]
358     public partial class UsingTaskParameterGroupElement : Microsoft.Build.Construction.ProjectElementContainer
359     {
UsingTaskParameterGroupElement()360         internal UsingTaskParameterGroupElement() { }
361         public override string Condition { get { throw null; } set { } }
362         public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectUsingTaskParameterElement> Parameters { get { throw null; } }
AddParameter(string name)363         public Microsoft.Build.Construction.ProjectUsingTaskParameterElement AddParameter(string name) { throw null; }
AddParameter(string name, string output, string required, string parameterType)364         public Microsoft.Build.Construction.ProjectUsingTaskParameterElement AddParameter(string name, string output, string required, string parameterType) { throw null; }
365     }
366 }
367 namespace Microsoft.Build.Evaluation
368 {
369     [System.Diagnostics.DebuggerDisplayAttribute("{FullPath} EffectiveToolsVersion={ToolsVersion} #GlobalProperties={data.globalProperties.Count} #Properties={data.Properties.Count} #ItemTypes={data.ItemTypes.Count} #ItemDefinitions={data.ItemDefinitions.Count} #Items={data.Items.Count} #Targets={data.Targets.Count}")]
370     public partial class Project
371     {
Project(Microsoft.Build.Construction.ProjectRootElement xml)372         public Project(Microsoft.Build.Construction.ProjectRootElement xml) { }
Project(Microsoft.Build.Construction.ProjectRootElement xml, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion)373         public Project(Microsoft.Build.Construction.ProjectRootElement xml, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion) { }
Project(Microsoft.Build.Construction.ProjectRootElement xml, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion, Microsoft.Build.Evaluation.ProjectCollection projectCollection)374         public Project(Microsoft.Build.Construction.ProjectRootElement xml, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion, Microsoft.Build.Evaluation.ProjectCollection projectCollection) { }
Project(Microsoft.Build.Construction.ProjectRootElement xml, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion, Microsoft.Build.Evaluation.ProjectCollection projectCollection, Microsoft.Build.Evaluation.ProjectLoadSettings loadSettings)375         public Project(Microsoft.Build.Construction.ProjectRootElement xml, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion, Microsoft.Build.Evaluation.ProjectCollection projectCollection, Microsoft.Build.Evaluation.ProjectLoadSettings loadSettings) { }
Project(string projectFile)376         public Project(string projectFile) { }
Project(string projectFile, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion)377         public Project(string projectFile, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion) { }
Project(string projectFile, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion, Microsoft.Build.Evaluation.ProjectCollection projectCollection)378         public Project(string projectFile, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion, Microsoft.Build.Evaluation.ProjectCollection projectCollection) { }
Project(string projectFile, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion, Microsoft.Build.Evaluation.ProjectCollection projectCollection, Microsoft.Build.Evaluation.ProjectLoadSettings loadSettings)379         public Project(string projectFile, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion, Microsoft.Build.Evaluation.ProjectCollection projectCollection, Microsoft.Build.Evaluation.ProjectLoadSettings loadSettings) { }
Project(System.Xml.XmlReader xmlReader)380         public Project(System.Xml.XmlReader xmlReader) { }
Project(System.Xml.XmlReader xmlReader, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion)381         public Project(System.Xml.XmlReader xmlReader, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion) { }
Project(System.Xml.XmlReader xmlReader, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion, Microsoft.Build.Evaluation.ProjectCollection projectCollection)382         public Project(System.Xml.XmlReader xmlReader, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion, Microsoft.Build.Evaluation.ProjectCollection projectCollection) { }
Project(System.Xml.XmlReader xmlReader, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion, Microsoft.Build.Evaluation.ProjectCollection projectCollection, Microsoft.Build.Evaluation.ProjectLoadSettings loadSettings)383         public Project(System.Xml.XmlReader xmlReader, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion, Microsoft.Build.Evaluation.ProjectCollection projectCollection, Microsoft.Build.Evaluation.ProjectLoadSettings loadSettings) { }
384         public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectMetadata> AllEvaluatedItemDefinitionMetadata { get { throw null; } }
385         public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectItem> AllEvaluatedItems { get { throw null; } }
386         public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectProperty> AllEvaluatedProperties { get { throw null; } }
387         public System.Collections.Generic.IDictionary<string, System.Collections.Generic.List<string>> ConditionedProperties { get { throw null; } }
388         public string DirectoryPath { get { throw null; } }
389         public bool DisableMarkDirty { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
390         public int EvaluationCounter { get { throw null; } }
391         public string FullPath { get { throw null; } set { } }
392         public System.Collections.Generic.IDictionary<string, string> GlobalProperties { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
393         public System.Collections.Generic.IList<Microsoft.Build.Evaluation.ResolvedImport> Imports { get { throw null; } }
394         public System.Collections.Generic.IList<Microsoft.Build.Evaluation.ResolvedImport> ImportsIncludingDuplicates { get { throw null; } }
395         public bool IsBuildEnabled { get { throw null; } }
396         public bool IsDirty { get { throw null; } }
397         public System.Collections.Generic.IDictionary<string, Microsoft.Build.Evaluation.ProjectItemDefinition> ItemDefinitions { get { throw null; } }
398         [System.MonoTODOAttribute("should be different from AllEvaluatedItems")]
399         public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectItem> Items { get { throw null; } }
400         public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectItem> ItemsIgnoringCondition { get { throw null; } }
401         public System.Collections.Generic.ICollection<string> ItemTypes { get { throw null; } }
402         public Microsoft.Build.Evaluation.ProjectCollection ProjectCollection { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
403         [System.MonoTODOAttribute("should be different from AllEvaluatedProperties")]
404         public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectProperty> Properties { get { throw null; } }
405         public bool SkipEvaluation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
406         public System.Collections.Generic.IDictionary<string, Microsoft.Build.Execution.ProjectTargetInstance> Targets { get { throw null; } }
407         public string ToolsVersion { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
408         public Microsoft.Build.Construction.ProjectRootElement Xml { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
AddItem(string itemType, string unevaluatedInclude)409         public System.Collections.Generic.IList<Microsoft.Build.Evaluation.ProjectItem> AddItem(string itemType, string unevaluatedInclude) { throw null; }
AddItem(string itemType, string unevaluatedInclude, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, string>> metadata)410         public System.Collections.Generic.IList<Microsoft.Build.Evaluation.ProjectItem> AddItem(string itemType, string unevaluatedInclude, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, string>> metadata) { throw null; }
AddItemFast(string itemType, string unevaluatedInclude)411         public System.Collections.Generic.IList<Microsoft.Build.Evaluation.ProjectItem> AddItemFast(string itemType, string unevaluatedInclude) { throw null; }
AddItemFast(string itemType, string unevaluatedInclude, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, string>> metadata)412         public System.Collections.Generic.IList<Microsoft.Build.Evaluation.ProjectItem> AddItemFast(string itemType, string unevaluatedInclude, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, string>> metadata) { throw null; }
Build()413         public bool Build() { throw null; }
Build(Microsoft.Build.Framework.ILogger logger)414         public bool Build(Microsoft.Build.Framework.ILogger logger) { throw null; }
Build(System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers)415         public bool Build(System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers) { throw null; }
Build(System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers, System.Collections.Generic.IEnumerable<Microsoft.Build.Logging.ForwardingLoggerRecord> remoteLoggers)416         public bool Build(System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers, System.Collections.Generic.IEnumerable<Microsoft.Build.Logging.ForwardingLoggerRecord> remoteLoggers) { throw null; }
Build(string target)417         public bool Build(string target) { throw null; }
Build(string target, System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers)418         public bool Build(string target, System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers) { throw null; }
Build(string target, System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers, System.Collections.Generic.IEnumerable<Microsoft.Build.Logging.ForwardingLoggerRecord> remoteLoggers)419         public bool Build(string target, System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers, System.Collections.Generic.IEnumerable<Microsoft.Build.Logging.ForwardingLoggerRecord> remoteLoggers) { throw null; }
Build(string[] targets)420         public bool Build(string[] targets) { throw null; }
Build(string[] targets, System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers)421         public bool Build(string[] targets, System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers) { throw null; }
Build(string[] targets, System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers, System.Collections.Generic.IEnumerable<Microsoft.Build.Logging.ForwardingLoggerRecord> remoteLoggers)422         public bool Build(string[] targets, System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers, System.Collections.Generic.IEnumerable<Microsoft.Build.Logging.ForwardingLoggerRecord> remoteLoggers) { throw null; }
CreateProjectInstance()423         public Microsoft.Build.Execution.ProjectInstance CreateProjectInstance() { throw null; }
ExpandString(string unexpandedValue)424         public string ExpandString(string unexpandedValue) { throw null; }
GetEvaluatedItemIncludeEscaped(Microsoft.Build.Evaluation.ProjectItem item)425         public static string GetEvaluatedItemIncludeEscaped(Microsoft.Build.Evaluation.ProjectItem item) { throw null; }
GetEvaluatedItemIncludeEscaped(Microsoft.Build.Evaluation.ProjectItemDefinition item)426         public static string GetEvaluatedItemIncludeEscaped(Microsoft.Build.Evaluation.ProjectItemDefinition item) { throw null; }
GetItems(string itemType)427         public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectItem> GetItems(string itemType) { throw null; }
GetItemsByEvaluatedInclude(string evaluatedInclude)428         public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectItem> GetItemsByEvaluatedInclude(string evaluatedInclude) { throw null; }
GetItemsIgnoringCondition(string itemType)429         public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectItem> GetItemsIgnoringCondition(string itemType) { throw null; }
GetLogicalProject()430         public System.Collections.Generic.IEnumerable<Microsoft.Build.Construction.ProjectElement> GetLogicalProject() { throw null; }
GetMetadataValueEscaped(Microsoft.Build.Evaluation.ProjectItem item, string name)431         public static string GetMetadataValueEscaped(Microsoft.Build.Evaluation.ProjectItem item, string name) { throw null; }
GetMetadataValueEscaped(Microsoft.Build.Evaluation.ProjectItemDefinition item, string name)432         public static string GetMetadataValueEscaped(Microsoft.Build.Evaluation.ProjectItemDefinition item, string name) { throw null; }
GetMetadataValueEscaped(Microsoft.Build.Evaluation.ProjectMetadata metadatum)433         public static string GetMetadataValueEscaped(Microsoft.Build.Evaluation.ProjectMetadata metadatum) { throw null; }
GetProperty(string name)434         public Microsoft.Build.Evaluation.ProjectProperty GetProperty(string name) { throw null; }
GetPropertyValue(string name)435         public string GetPropertyValue(string name) { throw null; }
GetPropertyValueEscaped(Microsoft.Build.Evaluation.ProjectProperty property)436         public static string GetPropertyValueEscaped(Microsoft.Build.Evaluation.ProjectProperty property) { throw null; }
MarkDirty()437         public void MarkDirty() { }
ReevaluateIfNecessary()438         public void ReevaluateIfNecessary() { }
RemoveGlobalProperty(string name)439         public bool RemoveGlobalProperty(string name) { throw null; }
RemoveItem(Microsoft.Build.Evaluation.ProjectItem item)440         public bool RemoveItem(Microsoft.Build.Evaluation.ProjectItem item) { throw null; }
RemoveItems(System.Collections.Generic.IEnumerable<Microsoft.Build.Evaluation.ProjectItem> items)441         public void RemoveItems(System.Collections.Generic.IEnumerable<Microsoft.Build.Evaluation.ProjectItem> items) { }
RemoveProperty(Microsoft.Build.Evaluation.ProjectProperty property)442         public bool RemoveProperty(Microsoft.Build.Evaluation.ProjectProperty property) { throw null; }
Save()443         public void Save() { }
Save(System.IO.TextWriter writer)444         public void Save(System.IO.TextWriter writer) { }
Save(string path)445         public void Save(string path) { }
Save(string path, System.Text.Encoding encoding)446         public void Save(string path, System.Text.Encoding encoding) { }
Save(System.Text.Encoding encoding)447         public void Save(System.Text.Encoding encoding) { }
SaveLogicalProject(System.IO.TextWriter writer)448         public void SaveLogicalProject(System.IO.TextWriter writer) { }
SetGlobalProperty(string name, string escapedValue)449         public bool SetGlobalProperty(string name, string escapedValue) { throw null; }
SetProperty(string name, string unevaluatedValue)450         public Microsoft.Build.Evaluation.ProjectProperty SetProperty(string name, string unevaluatedValue) { throw null; }
451     }
452     public partial class ProjectChangedEventArgs : System.EventArgs
453     {
ProjectChangedEventArgs()454         internal ProjectChangedEventArgs() { }
455         public Microsoft.Build.Evaluation.Project Project { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
456     }
457     public partial class ProjectCollection : System.IDisposable
458     {
ProjectCollection()459         public ProjectCollection() { }
ProjectCollection(Microsoft.Build.Evaluation.ToolsetDefinitionLocations toolsetLocations)460         public ProjectCollection(Microsoft.Build.Evaluation.ToolsetDefinitionLocations toolsetLocations) { }
ProjectCollection(System.Collections.Generic.IDictionary<string, string> globalProperties)461         public ProjectCollection(System.Collections.Generic.IDictionary<string, string> globalProperties) { }
ProjectCollection(System.Collections.Generic.IDictionary<string, string> globalProperties, System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers, Microsoft.Build.Evaluation.ToolsetDefinitionLocations toolsetDefinitionLocations)462         public ProjectCollection(System.Collections.Generic.IDictionary<string, string> globalProperties, System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers, Microsoft.Build.Evaluation.ToolsetDefinitionLocations toolsetDefinitionLocations) { }
ProjectCollection(System.Collections.Generic.IDictionary<string, string> globalProperties, System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers, System.Collections.Generic.IEnumerable<Microsoft.Build.Logging.ForwardingLoggerRecord> remoteLoggers, Microsoft.Build.Evaluation.ToolsetDefinitionLocations toolsetDefinitionLocations, int maxNodeCount, bool onlyLogCriticalEvents)463         public ProjectCollection(System.Collections.Generic.IDictionary<string, string> globalProperties, System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers, System.Collections.Generic.IEnumerable<Microsoft.Build.Logging.ForwardingLoggerRecord> remoteLoggers, Microsoft.Build.Evaluation.ToolsetDefinitionLocations toolsetDefinitionLocations, int maxNodeCount, bool onlyLogCriticalEvents) { }
464         public int Count { get { throw null; } }
465         public string DefaultToolsVersion { get { throw null; } set { } }
466         [System.MonoTODOAttribute]
467         public bool DisableMarkDirty { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
468         public static Microsoft.Build.Evaluation.ProjectCollection GlobalProjectCollection { get { throw null; } }
469         public System.Collections.Generic.IDictionary<string, string> GlobalProperties { get { throw null; } }
470         [System.MonoTODOAttribute]
471         public Microsoft.Build.Execution.HostServices HostServices { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
472         [System.MonoTODOAttribute]
473         public bool IsBuildEnabled { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
474         public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.Project> LoadedProjects { get { throw null; } }
475         public System.Collections.Generic.ICollection<Microsoft.Build.Framework.ILogger> Loggers { get { throw null; } }
476         [System.MonoTODOAttribute]
477         public bool OnlyLogCriticalEvents { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
478         [System.MonoTODOAttribute]
479         public bool SkipEvaluation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
480         public Microsoft.Build.Evaluation.ToolsetDefinitionLocations ToolsetLocations { get { throw null; } }
481         public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.Toolset> Toolsets { get { throw null; } }
482         public static System.Version Version { get { throw null; } }
483         [System.MonoTODOAttribute("not fired yet")]
484         public event Microsoft.Build.Evaluation.ProjectCollection.ProjectAddedEventHandler ProjectAdded { add { } remove { } }
485         [System.MonoTODOAttribute("not fired yet")]
486         public event System.EventHandler<Microsoft.Build.Evaluation.ProjectChangedEventArgs> ProjectChanged { add { } remove { } }
487         [System.MonoTODOAttribute("not fired yet")]
488         public event System.EventHandler<Microsoft.Build.Evaluation.ProjectCollectionChangedEventArgs> ProjectCollectionChanged { add { } remove { } }
489         [System.MonoTODOAttribute("not fired yet")]
490         public event System.EventHandler<Microsoft.Build.Evaluation.ProjectXmlChangedEventArgs> ProjectXmlChanged { add { } remove { } }
AddProject(Microsoft.Build.Evaluation.Project project)491         public void AddProject(Microsoft.Build.Evaluation.Project project) { }
492         [System.MonoTODOAttribute("not verified at all")]
AddToolset(Microsoft.Build.Evaluation.Toolset toolset)493         public void AddToolset(Microsoft.Build.Evaluation.Toolset toolset) { }
Dispose()494         public void Dispose() { }
Dispose(bool disposing)495         protected virtual void Dispose(bool disposing) { }
Escape(string unescapedString)496         public static string Escape(string unescapedString) { throw null; }
GetLoadedProjects(string fullPath)497         public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.Project> GetLoadedProjects(string fullPath) { throw null; }
GetToolset(string toolsVersion)498         public Microsoft.Build.Evaluation.Toolset GetToolset(string toolsVersion) { throw null; }
LoadProject(string fileName)499         public Microsoft.Build.Evaluation.Project LoadProject(string fileName) { throw null; }
LoadProject(string fileName, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion)500         public Microsoft.Build.Evaluation.Project LoadProject(string fileName, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion) { throw null; }
LoadProject(string fileName, string toolsVersion)501         public Microsoft.Build.Evaluation.Project LoadProject(string fileName, string toolsVersion) { throw null; }
LoadProject(System.Xml.XmlReader xmlReader)502         public Microsoft.Build.Evaluation.Project LoadProject(System.Xml.XmlReader xmlReader) { throw null; }
LoadProject(System.Xml.XmlReader xmlReader, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion)503         public Microsoft.Build.Evaluation.Project LoadProject(System.Xml.XmlReader xmlReader, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion) { throw null; }
LoadProject(System.Xml.XmlReader xmlReader, string toolsVersion)504         public Microsoft.Build.Evaluation.Project LoadProject(System.Xml.XmlReader xmlReader, string toolsVersion) { throw null; }
RegisterLogger(Microsoft.Build.Framework.ILogger logger)505         public void RegisterLogger(Microsoft.Build.Framework.ILogger logger) { }
RegisterLoggers(System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers)506         public void RegisterLoggers(System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers) { }
507         [System.MonoTODOAttribute("not verified at all")]
RemoveAllToolsets()508         public void RemoveAllToolsets() { }
Unescape(string escapedString)509         public static string Unescape(string escapedString) { throw null; }
UnloadAllProjects()510         public void UnloadAllProjects() { }
511         [System.MonoTODOAttribute("Not verified at all")]
UnloadProject(Microsoft.Build.Construction.ProjectRootElement projectRootElement)512         public void UnloadProject(Microsoft.Build.Construction.ProjectRootElement projectRootElement) { }
513         [System.MonoTODOAttribute("Not verified at all")]
UnloadProject(Microsoft.Build.Evaluation.Project project)514         public void UnloadProject(Microsoft.Build.Evaluation.Project project) { }
ProjectAddedEventHandler(object sender, Microsoft.Build.Evaluation.ProjectCollection.ProjectAddedToProjectCollectionEventArgs e)515         public delegate void ProjectAddedEventHandler(object sender, Microsoft.Build.Evaluation.ProjectCollection.ProjectAddedToProjectCollectionEventArgs e);
516         public partial class ProjectAddedToProjectCollectionEventArgs : System.EventArgs
517         {
ProjectAddedToProjectCollectionEventArgs(Microsoft.Build.Construction.ProjectRootElement element)518             public ProjectAddedToProjectCollectionEventArgs(Microsoft.Build.Construction.ProjectRootElement element) { }
519             public Microsoft.Build.Construction.ProjectRootElement ProjectRootElement { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
520         }
521     }
522     public partial class ProjectCollectionChangedEventArgs : System.EventArgs
523     {
ProjectCollectionChangedEventArgs(Microsoft.Build.Evaluation.ProjectCollectionChangedState state)524         public ProjectCollectionChangedEventArgs(Microsoft.Build.Evaluation.ProjectCollectionChangedState state) { }
525         public Microsoft.Build.Evaluation.ProjectCollectionChangedState State { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
526     }
527     public enum ProjectCollectionChangedState
528     {
529         DefaultToolsVersion = 0,
530         DisableMarkDirty = 1,
531         GlobalProperties = 2,
532         HostServices = 3,
533         IsBuildEnabled = 4,
534         Loggers = 5,
535         OnlyLogCriticalEvents = 6,
536         SkipEvaluation = 7,
537         Toolsets = 8,
538     }
539     [System.Diagnostics.DebuggerDisplayAttribute("{ItemType}={EvaluatedInclude} [{UnevaluatedInclude}] #DirectMetadata={DirectMetadataCount}")]
540     public partial class ProjectItem
541     {
ProjectItem()542         internal ProjectItem() { }
543         public System.Collections.Generic.IEnumerable<Microsoft.Build.Evaluation.ProjectMetadata> DirectMetadata { get { throw null; } }
544         public int DirectMetadataCount { get { throw null; } }
545         public string EvaluatedInclude { get { throw null; } }
546         public bool IsImported { get { throw null; } }
547         public string ItemType { get { throw null; } set { } }
548         public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectMetadata> Metadata { get { throw null; } }
549         public int MetadataCount { get { throw null; } }
550         public Microsoft.Build.Evaluation.Project Project { get { throw null; } }
551         public string UnevaluatedInclude { get { throw null; } set { } }
552         public Microsoft.Build.Construction.ProjectItemElement Xml { get { throw null; } }
GetMetadata(string name)553         public Microsoft.Build.Evaluation.ProjectMetadata GetMetadata(string name) { throw null; }
GetMetadataValue(string name)554         public string GetMetadataValue(string name) { throw null; }
HasMetadata(string name)555         public bool HasMetadata(string name) { throw null; }
RemoveMetadata(string name)556         public bool RemoveMetadata(string name) { throw null; }
Rename(string name)557         public void Rename(string name) { }
SetMetadataValue(string name, string unevaluatedValue)558         public Microsoft.Build.Evaluation.ProjectMetadata SetMetadataValue(string name, string unevaluatedValue) { throw null; }
559     }
560     public partial class ProjectItemDefinition
561     {
ProjectItemDefinition()562         internal ProjectItemDefinition() { }
563         public string ItemType { get { throw null; } }
564         public System.Collections.Generic.IEnumerable<Microsoft.Build.Evaluation.ProjectMetadata> Metadata { get { throw null; } }
565         public int MetadataCount { get { throw null; } }
566         public Microsoft.Build.Evaluation.Project Project { get { throw null; } }
567     }
568     [System.FlagsAttribute]
569     public enum ProjectLoadSettings
570     {
571         Default = 0,
572         IgnoreMissingImports = 1,
573         RecordDuplicateButNotCircularImports = 2,
574         RejectCircularImports = 4,
575     }
576     public partial class ProjectMetadata
577     {
ProjectMetadata()578         internal ProjectMetadata() { }
579         public string EvaluatedValue { get { throw null; } }
580         public bool IsImported { get { throw null; } }
581         public string ItemType { get { throw null; } }
582         public string Name { get { throw null; } }
583         public Microsoft.Build.Evaluation.ProjectMetadata Predecessor { get { throw null; } }
584         public Microsoft.Build.Evaluation.Project Project { get { throw null; } }
585         public string UnevaluatedValue { get { throw null; } }
586         public Microsoft.Build.Construction.ProjectMetadataElement Xml { get { throw null; } }
587     }
588     public abstract partial class ProjectProperty
589     {
ProjectProperty()590         internal ProjectProperty() { }
591         public string EvaluatedValue { get { throw null; } }
592         public abstract bool IsEnvironmentProperty { get; }
593         public abstract bool IsGlobalProperty { get; }
594         [System.MonoTODOAttribute]
595         public abstract bool IsImported { get; }
596         public abstract bool IsReservedProperty { get; }
597         public abstract string Name { get; }
598         public abstract Microsoft.Build.Evaluation.ProjectProperty Predecessor { get; }
599         public Microsoft.Build.Evaluation.Project Project { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
600         public abstract string UnevaluatedValue { get; set; }
601         public abstract Microsoft.Build.Construction.ProjectPropertyElement Xml { get; }
602     }
603     public partial class ProjectXmlChangedEventArgs : System.EventArgs
604     {
ProjectXmlChangedEventArgs()605         internal ProjectXmlChangedEventArgs() { }
606         public Microsoft.Build.Construction.ProjectRootElement ProjectXml { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
607         public string Reason { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
608     }
609     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
610     public partial struct ResolvedImport
611     {
612         public Microsoft.Build.Construction.ProjectRootElement ImportedProject { get { throw null; } }
613         public Microsoft.Build.Construction.ProjectImportElement ImportingElement { get { throw null; } }
614         public bool IsImported { get { throw null; } }
615     }
616     public partial class SubToolset
617     {
SubToolset()618         internal SubToolset() { }
619         public System.Collections.Generic.IDictionary<string, Microsoft.Build.Execution.ProjectPropertyInstance> Properties { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
620         public string SubToolsetVersion { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
621     }
622     public partial class Toolset
623     {
Toolset(string toolsVersion, string toolsPath, Microsoft.Build.Evaluation.ProjectCollection projectCollection, string msbuildOverrideTasksPath)624         public Toolset(string toolsVersion, string toolsPath, Microsoft.Build.Evaluation.ProjectCollection projectCollection, string msbuildOverrideTasksPath) { }
Toolset(string toolsVersion, string toolsPath, System.Collections.Generic.IDictionary<string, string> buildProperties, Microsoft.Build.Evaluation.ProjectCollection projectCollection, System.Collections.Generic.IDictionary<string, Microsoft.Build.Evaluation.SubToolset> subToolsets, string msbuildOverrideTasksPath)625         public Toolset(string toolsVersion, string toolsPath, System.Collections.Generic.IDictionary<string, string> buildProperties, Microsoft.Build.Evaluation.ProjectCollection projectCollection, System.Collections.Generic.IDictionary<string, Microsoft.Build.Evaluation.SubToolset> subToolsets, string msbuildOverrideTasksPath) { }
Toolset(string toolsVersion, string toolsPath, System.Collections.Generic.IDictionary<string, string> buildProperties, Microsoft.Build.Evaluation.ProjectCollection projectCollection, string msbuildOverrideTasksPath)626         public Toolset(string toolsVersion, string toolsPath, System.Collections.Generic.IDictionary<string, string> buildProperties, Microsoft.Build.Evaluation.ProjectCollection projectCollection, string msbuildOverrideTasksPath) { }
627         public string DefaultSubToolsetVersion { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
628         public System.Collections.Generic.IDictionary<string, Microsoft.Build.Execution.ProjectPropertyInstance> Properties { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
629         public System.Collections.Generic.IDictionary<string, Microsoft.Build.Evaluation.SubToolset> SubToolsets { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
630         public string ToolsPath { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
631         public string ToolsVersion { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
632     }
633     [System.FlagsAttribute]
634     public enum ToolsetDefinitionLocations
635     {
636         ConfigurationFile = 1,
637         None = 0,
638         Registry = 2,
639     }
640 }
641 namespace Microsoft.Build.Exceptions
642 {
643     public partial class BuildAbortedException : System.Exception
644     {
BuildAbortedException()645         public BuildAbortedException() { }
BuildAbortedException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)646         protected BuildAbortedException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
BuildAbortedException(string message)647         public BuildAbortedException(string message) { }
BuildAbortedException(string message, System.Exception innerException)648         public BuildAbortedException(string message, System.Exception innerException) { }
649         public string ErrorCode { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)650         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
651     }
652     public partial class InternalLoggerException : System.Exception
653     {
InternalLoggerException()654         public InternalLoggerException() { }
InternalLoggerException(string message)655         public InternalLoggerException(string message) { }
InternalLoggerException(string message, System.Exception innerException)656         public InternalLoggerException(string message, System.Exception innerException) { }
657         public Microsoft.Build.Framework.BuildEventArgs BuildEventArgs { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
658         public string ErrorCode { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
659         public string HelpKeyword { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
660         public bool InitializationException { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)661         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
662     }
663     [System.SerializableAttribute]
664     public sealed partial class InvalidProjectFileException : System.Exception
665     {
InvalidProjectFileException()666         public InvalidProjectFileException() { }
InvalidProjectFileException(string message)667         public InvalidProjectFileException(string message) { }
InvalidProjectFileException(string message, System.Exception innerException)668         public InvalidProjectFileException(string message, System.Exception innerException) { }
InvalidProjectFileException(string projectFile, int lineNumber, int columnNumber, int endLineNumber, int endColumnNumber, string message, string errorSubcategory, string errorCode, string helpKeyword)669         public InvalidProjectFileException(string projectFile, int lineNumber, int columnNumber, int endLineNumber, int endColumnNumber, string message, string errorSubcategory, string errorCode, string helpKeyword) { }
670         public string BaseMessage { get { throw null; } }
671         public int ColumnNumber { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
672         public int EndColumnNumber { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
673         public int EndLineNumber { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
674         public string ErrorCode { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
675         public string ErrorSubcategory { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
676         public bool HasBeenLogged { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
677         public string HelpKeyword { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
678         public int LineNumber { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
679         public override string Message { get { throw null; } }
680         public string ProjectFile { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)681         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
682     }
683     public partial class InvalidToolsetDefinitionException : System.Exception
684     {
InvalidToolsetDefinitionException()685         public InvalidToolsetDefinitionException() { }
InvalidToolsetDefinitionException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)686         protected InvalidToolsetDefinitionException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
InvalidToolsetDefinitionException(string message)687         public InvalidToolsetDefinitionException(string message) { }
InvalidToolsetDefinitionException(string message, System.Exception innerException)688         public InvalidToolsetDefinitionException(string message, System.Exception innerException) { }
689         public string ErrorCode { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)690         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
691     }
692 }
693 namespace Microsoft.Build.Execution
694 {
695     public partial class BuildManager
696     {
BuildManager()697         public BuildManager() { }
BuildManager(string hostName)698         public BuildManager(string hostName) { }
699         public static Microsoft.Build.Execution.BuildManager DefaultBuildManager { get { throw null; } }
BeginBuild(Microsoft.Build.Execution.BuildParameters parameters)700         public void BeginBuild(Microsoft.Build.Execution.BuildParameters parameters) { }
Build(Microsoft.Build.Execution.BuildParameters parameters, Microsoft.Build.Execution.BuildRequestData requestData)701         public Microsoft.Build.Execution.BuildResult Build(Microsoft.Build.Execution.BuildParameters parameters, Microsoft.Build.Execution.BuildRequestData requestData) { throw null; }
BuildRequest(Microsoft.Build.Execution.BuildRequestData requestData)702         public Microsoft.Build.Execution.BuildResult BuildRequest(Microsoft.Build.Execution.BuildRequestData requestData) { throw null; }
CancelAllSubmissions()703         public void CancelAllSubmissions() { }
Dispose()704         public void Dispose() { }
EndBuild()705         public void EndBuild() { }
~BuildManager()706         ~BuildManager() { }
GetProjectInstanceForBuild(Microsoft.Build.Evaluation.Project project)707         public Microsoft.Build.Execution.ProjectInstance GetProjectInstanceForBuild(Microsoft.Build.Evaluation.Project project) { throw null; }
PendBuildRequest(Microsoft.Build.Execution.BuildRequestData requestData)708         public Microsoft.Build.Execution.BuildSubmission PendBuildRequest(Microsoft.Build.Execution.BuildRequestData requestData) { throw null; }
ResetCaches()709         public void ResetCaches() { }
710     }
711     public partial class BuildParameters
712     {
BuildParameters()713         public BuildParameters() { }
BuildParameters(Microsoft.Build.Evaluation.ProjectCollection projectCollection)714         public BuildParameters(Microsoft.Build.Evaluation.ProjectCollection projectCollection) { }
715         [System.MonoTODOAttribute]
716         public System.Threading.ThreadPriority BuildThreadPriority { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
717         [System.MonoTODOAttribute]
718         public System.Globalization.CultureInfo Culture { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
719         public string DefaultToolsVersion { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
720         [System.MonoTODOAttribute]
721         public bool DetailedSummary { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
722         public bool EnableNodeReuse { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
723         [System.MonoTODOAttribute]
724         public System.Collections.Generic.IDictionary<string, string> EnvironmentProperties { get { throw null; } }
725         [System.MonoTODOAttribute]
726         public System.Collections.Generic.IEnumerable<Microsoft.Build.Logging.ForwardingLoggerRecord> ForwardingLoggers { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
727         [System.MonoTODOAttribute]
728         public System.Collections.Generic.IDictionary<string, string> GlobalProperties { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
729         public Microsoft.Build.Execution.HostServices HostServices { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
730         [System.MonoTODOAttribute]
731         public bool LegacyThreadingSemantics { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
732         [System.MonoTODOAttribute]
733         public System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> Loggers { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
734         [System.MonoTODOAttribute]
735         public int MaxNodeCount { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
736         [System.MonoTODOAttribute]
737         public int MemoryUseLimit { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
738         [System.MonoTODOAttribute]
739         public string NodeExeLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
740         [System.MonoTODOAttribute]
741         public bool OnlyLogCriticalEvents { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
742         [System.MonoTODOAttribute]
743         public bool ResetCaches { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
744         [System.MonoTODOAttribute]
745         public bool SaveOperatingEnvironment { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
746         [System.MonoTODOAttribute]
747         public Microsoft.Build.Evaluation.ToolsetDefinitionLocations ToolsetDefinitionLocations { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
748         [System.MonoTODOAttribute]
749         public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.Toolset> Toolsets { get { throw null; } }
750         [System.MonoTODOAttribute]
751         public System.Globalization.CultureInfo UICulture { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
752         [System.MonoTODOAttribute]
753         public bool UseSynchronousLogging { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
Clone()754         public Microsoft.Build.Execution.BuildParameters Clone() { throw null; }
GetToolset(string toolsVersion)755         public Microsoft.Build.Evaluation.Toolset GetToolset(string toolsVersion) { throw null; }
756     }
757     public partial class BuildRequestData
758     {
BuildRequestData(Microsoft.Build.Execution.ProjectInstance projectInstance, string[] targetsToBuild)759         public BuildRequestData(Microsoft.Build.Execution.ProjectInstance projectInstance, string[] targetsToBuild) { }
BuildRequestData(Microsoft.Build.Execution.ProjectInstance projectInstance, string[] targetsToBuild, Microsoft.Build.Execution.HostServices hostServices)760         public BuildRequestData(Microsoft.Build.Execution.ProjectInstance projectInstance, string[] targetsToBuild, Microsoft.Build.Execution.HostServices hostServices) { }
BuildRequestData(Microsoft.Build.Execution.ProjectInstance projectInstance, string[] targetsToBuild, Microsoft.Build.Execution.HostServices hostServices, Microsoft.Build.Execution.BuildRequestDataFlags flags)761         public BuildRequestData(Microsoft.Build.Execution.ProjectInstance projectInstance, string[] targetsToBuild, Microsoft.Build.Execution.HostServices hostServices, Microsoft.Build.Execution.BuildRequestDataFlags flags) { }
BuildRequestData(string projectFullPath, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion, string[] targetsToBuild, Microsoft.Build.Execution.HostServices hostServices)762         public BuildRequestData(string projectFullPath, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion, string[] targetsToBuild, Microsoft.Build.Execution.HostServices hostServices) { }
BuildRequestData(string projectFullPath, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion, string[] targetsToBuild, Microsoft.Build.Execution.HostServices hostServices, Microsoft.Build.Execution.BuildRequestDataFlags flags)763         public BuildRequestData(string projectFullPath, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion, string[] targetsToBuild, Microsoft.Build.Execution.HostServices hostServices, Microsoft.Build.Execution.BuildRequestDataFlags flags) { }
764         public string ExplicitlySpecifiedToolsVersion { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
765         [System.MonoTODOAttribute("unused")]
766         public Microsoft.Build.Execution.BuildRequestDataFlags Flags { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
767         [System.MonoTODOAttribute("unused")]
768         public Microsoft.Build.Execution.HostServices HostServices { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
769         public string ProjectFullPath { get { throw null; } }
770         [System.MonoTODOAttribute("unused")]
771         public Microsoft.Build.Execution.ProjectInstance ProjectInstance { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
772         [System.MonoTODOAttribute]
773         public System.Collections.Generic.IEnumerable<string> PropertiesToTransfer { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
774         [System.MonoTODOAttribute]
775         public System.Collections.Generic.ICollection<string> TargetNames { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
776     }
777     [System.FlagsAttribute]
778     public enum BuildRequestDataFlags
779     {
780         None = 0,
781         ReplaceExistingProjectInstance = 1,
782     }
783     public partial class BuildResult
784     {
BuildResult()785         public BuildResult() { }
786         public bool CircularDependency { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
787         public int ConfigurationId { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
788         public System.Exception Exception { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
789         public int GlobalRequestId { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
790         public Microsoft.Build.Execution.ITargetResult this[string target] { get { throw null; } }
791         public int NodeRequestId { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
792         public Microsoft.Build.Execution.BuildResultCode OverallResult { get { throw null; } }
793         public int ParentGlobalRequestId { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
794         public System.Collections.Generic.IDictionary<string, Microsoft.Build.Execution.TargetResult> ResultsByTarget { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
795         public int SubmissionId { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
AddResultsForTarget(string target, Microsoft.Build.Execution.TargetResult result)796         public void AddResultsForTarget(string target, Microsoft.Build.Execution.TargetResult result) { }
HasResultsForTarget(string target)797         public bool HasResultsForTarget(string target) { throw null; }
MergeResults(Microsoft.Build.Execution.BuildResult results)798         public void MergeResults(Microsoft.Build.Execution.BuildResult results) { }
799     }
800     public enum BuildResultCode
801     {
802         Failure = 1,
803         Success = 0,
804     }
805     public partial class BuildSubmission
806     {
BuildSubmission()807         internal BuildSubmission() { }
808         public object AsyncContext { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
809         public Microsoft.Build.Execution.BuildManager BuildManager { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
810         public Microsoft.Build.Execution.BuildResult BuildResult { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
811         public bool IsCompleted { get { throw null; } }
812         public int SubmissionId { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
813         public System.Threading.WaitHandle WaitHandle { get { throw null; } }
Execute()814         public Microsoft.Build.Execution.BuildResult Execute() { throw null; }
ExecuteAsync(Microsoft.Build.Execution.BuildSubmissionCompleteCallback callback, object context)815         public void ExecuteAsync(Microsoft.Build.Execution.BuildSubmissionCompleteCallback callback, object context) { }
816     }
BuildSubmissionCompleteCallback(Microsoft.Build.Execution.BuildSubmission submission)817     public delegate void BuildSubmissionCompleteCallback(Microsoft.Build.Execution.BuildSubmission submission);
818     public partial class HostServices
819     {
HostServices()820         public HostServices() { }
GetHostObject(string projectFile, string targetName, string taskName)821         public Microsoft.Build.Framework.ITaskHost GetHostObject(string projectFile, string targetName, string taskName) { throw null; }
GetNodeAffinity(string projectFile)822         public Microsoft.Build.Execution.NodeAffinity GetNodeAffinity(string projectFile) { throw null; }
OnRenameProject(string oldFullPath, string newFullPath)823         public void OnRenameProject(string oldFullPath, string newFullPath) { }
RegisterHostObject(string projectFile, string targetName, string taskName, Microsoft.Build.Framework.ITaskHost hostObject)824         public void RegisterHostObject(string projectFile, string targetName, string taskName, Microsoft.Build.Framework.ITaskHost hostObject) { }
SetNodeAffinity(string projectFile, Microsoft.Build.Execution.NodeAffinity nodeAffinity)825         public void SetNodeAffinity(string projectFile, Microsoft.Build.Execution.NodeAffinity nodeAffinity) { }
UnregisterProject(string projectFullPath)826         public void UnregisterProject(string projectFullPath) { }
827     }
828     public partial interface ITargetResult
829     {
830         System.Exception Exception { get; }
831         Microsoft.Build.Framework.ITaskItem[] Items { get; }
832         Microsoft.Build.Execution.TargetResultCode ResultCode { get; }
833     }
834     public enum NodeAffinity
835     {
836         Any = 2,
837         InProc = 0,
838         OutOfProc = 1,
839     }
840     public partial class ProjectInstance
841     {
ProjectInstance(Microsoft.Build.Construction.ProjectRootElement xml)842         public ProjectInstance(Microsoft.Build.Construction.ProjectRootElement xml) { }
ProjectInstance(Microsoft.Build.Construction.ProjectRootElement xml, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion, Microsoft.Build.Evaluation.ProjectCollection projectCollection)843         public ProjectInstance(Microsoft.Build.Construction.ProjectRootElement xml, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion, Microsoft.Build.Evaluation.ProjectCollection projectCollection) { }
ProjectInstance(string projectFile)844         public ProjectInstance(string projectFile) { }
ProjectInstance(string projectFile, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion)845         public ProjectInstance(string projectFile, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion) { }
ProjectInstance(string projectFile, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion, Microsoft.Build.Evaluation.ProjectCollection projectCollection)846         public ProjectInstance(string projectFile, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion, Microsoft.Build.Evaluation.ProjectCollection projectCollection) { }
847         public System.Collections.Generic.List<string> DefaultTargets { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
848         public string Directory { get { throw null; } }
849         public string FullPath { get { throw null; } }
850         public System.Collections.Generic.IDictionary<string, string> GlobalProperties { get { throw null; } }
851         public System.Collections.Generic.List<string> InitialTargets { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
852         public bool IsImmutable { get { throw null; } }
853         public System.Collections.Generic.IDictionary<string, Microsoft.Build.Execution.ProjectItemDefinitionInstance> ItemDefinitions { get { throw null; } }
854         public System.Collections.Generic.ICollection<Microsoft.Build.Execution.ProjectItemInstance> Items { get { throw null; } }
855         public System.Collections.Generic.ICollection<string> ItemTypes { get { throw null; } }
856         public Microsoft.Build.Construction.ElementLocation ProjectFileLocation { get { throw null; } }
857         public System.Collections.Generic.ICollection<Microsoft.Build.Execution.ProjectPropertyInstance> Properties { get { throw null; } }
858         public System.Collections.Generic.IDictionary<string, Microsoft.Build.Execution.ProjectTargetInstance> Targets { get { throw null; } }
859         public string ToolsVersion { get { throw null; } }
AddItem(string itemType, string evaluatedInclude)860         public Microsoft.Build.Execution.ProjectItemInstance AddItem(string itemType, string evaluatedInclude) { throw null; }
AddItem(string itemType, string evaluatedInclude, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, string>> metadata)861         public Microsoft.Build.Execution.ProjectItemInstance AddItem(string itemType, string evaluatedInclude, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, string>> metadata) { throw null; }
Build()862         public bool Build() { throw null; }
Build(System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers)863         public bool Build(System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers) { throw null; }
Build(System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers, System.Collections.Generic.IEnumerable<Microsoft.Build.Logging.ForwardingLoggerRecord> remoteLoggers)864         public bool Build(System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers, System.Collections.Generic.IEnumerable<Microsoft.Build.Logging.ForwardingLoggerRecord> remoteLoggers) { throw null; }
Build(string target, System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers)865         public bool Build(string target, System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers) { throw null; }
Build(string target, System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers, System.Collections.Generic.IEnumerable<Microsoft.Build.Logging.ForwardingLoggerRecord> remoteLoggers)866         public bool Build(string target, System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers, System.Collections.Generic.IEnumerable<Microsoft.Build.Logging.ForwardingLoggerRecord> remoteLoggers) { throw null; }
Build(string[] targets, System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers)867         public bool Build(string[] targets, System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers) { throw null; }
Build(string[] targets, System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers, out System.Collections.Generic.IDictionary<string, Microsoft.Build.Execution.TargetResult> targetOutputs)868         public bool Build(string[] targets, System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers, out System.Collections.Generic.IDictionary<string, Microsoft.Build.Execution.TargetResult> targetOutputs) { targetOutputs = default(System.Collections.Generic.IDictionary<string, Microsoft.Build.Execution.TargetResult>); throw null; }
Build(string[] targets, System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers, System.Collections.Generic.IEnumerable<Microsoft.Build.Logging.ForwardingLoggerRecord> remoteLoggers)869         public bool Build(string[] targets, System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers, System.Collections.Generic.IEnumerable<Microsoft.Build.Logging.ForwardingLoggerRecord> remoteLoggers) { throw null; }
Build(string[] targets, System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers, System.Collections.Generic.IEnumerable<Microsoft.Build.Logging.ForwardingLoggerRecord> remoteLoggers, out System.Collections.Generic.IDictionary<string, Microsoft.Build.Execution.TargetResult> targetOutputs)870         public bool Build(string[] targets, System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers, System.Collections.Generic.IEnumerable<Microsoft.Build.Logging.ForwardingLoggerRecord> remoteLoggers, out System.Collections.Generic.IDictionary<string, Microsoft.Build.Execution.TargetResult> targetOutputs) { targetOutputs = default(System.Collections.Generic.IDictionary<string, Microsoft.Build.Execution.TargetResult>); throw null; }
DeepCopy()871         public Microsoft.Build.Execution.ProjectInstance DeepCopy() { throw null; }
DeepCopy(bool isImmutable)872         public Microsoft.Build.Execution.ProjectInstance DeepCopy(bool isImmutable) { throw null; }
EvaluateCondition(string condition)873         public bool EvaluateCondition(string condition) { throw null; }
ExpandString(string unexpandedValue)874         public string ExpandString(string unexpandedValue) { throw null; }
GetEvaluatedItemIncludeEscaped(Microsoft.Build.Execution.ProjectItemDefinitionInstance item)875         public static string GetEvaluatedItemIncludeEscaped(Microsoft.Build.Execution.ProjectItemDefinitionInstance item) { throw null; }
GetEvaluatedItemIncludeEscaped(Microsoft.Build.Execution.ProjectItemInstance item)876         public static string GetEvaluatedItemIncludeEscaped(Microsoft.Build.Execution.ProjectItemInstance item) { throw null; }
GetItems(string itemType)877         public System.Collections.Generic.ICollection<Microsoft.Build.Execution.ProjectItemInstance> GetItems(string itemType) { throw null; }
GetItemsByItemTypeAndEvaluatedInclude(string itemType, string evaluatedInclude)878         public System.Collections.Generic.IEnumerable<Microsoft.Build.Execution.ProjectItemInstance> GetItemsByItemTypeAndEvaluatedInclude(string itemType, string evaluatedInclude) { throw null; }
GetMetadataValueEscaped(Microsoft.Build.Execution.ProjectItemDefinitionInstance item, string name)879         public static string GetMetadataValueEscaped(Microsoft.Build.Execution.ProjectItemDefinitionInstance item, string name) { throw null; }
GetMetadataValueEscaped(Microsoft.Build.Execution.ProjectItemInstance item, string name)880         public static string GetMetadataValueEscaped(Microsoft.Build.Execution.ProjectItemInstance item, string name) { throw null; }
GetMetadataValueEscaped(Microsoft.Build.Execution.ProjectMetadataInstance metadatum)881         public static string GetMetadataValueEscaped(Microsoft.Build.Execution.ProjectMetadataInstance metadatum) { throw null; }
GetProperty(string name)882         public Microsoft.Build.Execution.ProjectPropertyInstance GetProperty(string name) { throw null; }
GetPropertyValue(string name)883         public string GetPropertyValue(string name) { throw null; }
GetPropertyValueEscaped(Microsoft.Build.Execution.ProjectPropertyInstance property)884         public static string GetPropertyValueEscaped(Microsoft.Build.Execution.ProjectPropertyInstance property) { throw null; }
RemoveItem(Microsoft.Build.Execution.ProjectItemInstance item)885         public bool RemoveItem(Microsoft.Build.Execution.ProjectItemInstance item) { throw null; }
RemoveProperty(string name)886         public bool RemoveProperty(string name) { throw null; }
SetProperty(string name, string evaluatedValue)887         public Microsoft.Build.Execution.ProjectPropertyInstance SetProperty(string name, string evaluatedValue) { throw null; }
ToProjectRootElement()888         public Microsoft.Build.Construction.ProjectRootElement ToProjectRootElement() { throw null; }
UpdateStateFrom(Microsoft.Build.Execution.ProjectInstance projectState)889         public void UpdateStateFrom(Microsoft.Build.Execution.ProjectInstance projectState) { }
890     }
891     public partial class ProjectItemDefinitionInstance
892     {
ProjectItemDefinitionInstance()893         internal ProjectItemDefinitionInstance() { }
894         public string ItemType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
895         public System.Collections.Generic.ICollection<Microsoft.Build.Execution.ProjectMetadataInstance> Metadata { get { throw null; } }
896         public int MetadataCount { get { throw null; } }
897         public System.Collections.Generic.IEnumerable<string> MetadataNames { get { throw null; } }
898     }
899     public sealed partial class ProjectItemGroupTaskInstance : Microsoft.Build.Execution.ProjectTargetInstanceChild
900     {
ProjectItemGroupTaskInstance()901         internal ProjectItemGroupTaskInstance() { }
902         public override string Condition { get { throw null; } }
903         public override Microsoft.Build.Construction.ElementLocation ConditionLocation { get { throw null; } }
904         public Microsoft.Build.Construction.ElementLocation ExecuteTargetsLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
905         public System.Collections.Generic.ICollection<Microsoft.Build.Execution.ProjectItemGroupTaskItemInstance> Items { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
906         public override Microsoft.Build.Construction.ElementLocation Location { get { throw null; } }
907     }
908     public partial class ProjectItemGroupTaskItemInstance
909     {
ProjectItemGroupTaskItemInstance()910         internal ProjectItemGroupTaskItemInstance() { }
911         public string Condition { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
912         public Microsoft.Build.Construction.ElementLocation ConditionLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
913         public string Exclude { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
914         public Microsoft.Build.Construction.ElementLocation ExcludeLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
915         public string Include { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
916         public Microsoft.Build.Construction.ElementLocation IncludeLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
917         public string ItemType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
918         public string KeepDuplicates { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
919         public Microsoft.Build.Construction.ElementLocation KeepDuplicatesLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
920         public string KeepMetadata { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
921         public Microsoft.Build.Construction.ElementLocation KeepMetadataLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
922         public Microsoft.Build.Construction.ElementLocation Location { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
923         public System.Collections.Generic.ICollection<Microsoft.Build.Execution.ProjectItemGroupTaskMetadataInstance> Metadata { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
924         public string Remove { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
925         public Microsoft.Build.Construction.ElementLocation RemoveLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
926         public string RemoveMetadata { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
927         public Microsoft.Build.Construction.ElementLocation RemoveMetadataLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
928     }
929     public sealed partial class ProjectItemGroupTaskMetadataInstance
930     {
ProjectItemGroupTaskMetadataInstance()931         internal ProjectItemGroupTaskMetadataInstance() { }
932         public string Condition { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
933         public Microsoft.Build.Construction.ElementLocation ConditionLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
934         public Microsoft.Build.Construction.ElementLocation Location { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
935         public string Name { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
936         public string Value { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
937     }
938     public partial class ProjectItemInstance : Microsoft.Build.Framework.ITaskItem, Microsoft.Build.Framework.ITaskItem2
939     {
ProjectItemInstance()940         internal ProjectItemInstance() { }
941         public int DirectMetadataCount { get { throw null; } }
942         public string EvaluatedInclude { get { throw null; } set { } }
943         public string ItemType { get { throw null; } }
944         public System.Collections.Generic.IEnumerable<Microsoft.Build.Execution.ProjectMetadataInstance> Metadata { get { throw null; } }
945         public int MetadataCount { get { throw null; } }
946         public System.Collections.Generic.ICollection<string> MetadataNames { get { throw null; } }
947         string Microsoft.Build.Framework.ITaskItem.ItemSpec { get { throw null; } set { } }
948         int Microsoft.Build.Framework.ITaskItem.MetadataCount { get { throw null; } }
949         System.Collections.ICollection Microsoft.Build.Framework.ITaskItem.MetadataNames { get { throw null; } }
950         string Microsoft.Build.Framework.ITaskItem2.EvaluatedIncludeEscaped { get { throw null; } set { } }
951         public Microsoft.Build.Execution.ProjectInstance Project { get { throw null; } }
GetMetadata(string name)952         public Microsoft.Build.Execution.ProjectMetadataInstance GetMetadata(string name) { throw null; }
GetMetadataValue(string name)953         public string GetMetadataValue(string name) { throw null; }
HasMetadata(string name)954         public bool HasMetadata(string name) { throw null; }
Microsoft.Build.Framework.ITaskItem.CloneCustomMetadata()955         System.Collections.IDictionary Microsoft.Build.Framework.ITaskItem.CloneCustomMetadata() { throw null; }
Microsoft.Build.Framework.ITaskItem.CopyMetadataTo(Microsoft.Build.Framework.ITaskItem destinationItem)956         void Microsoft.Build.Framework.ITaskItem.CopyMetadataTo(Microsoft.Build.Framework.ITaskItem destinationItem) { }
Microsoft.Build.Framework.ITaskItem.GetMetadata(string metadataName)957         string Microsoft.Build.Framework.ITaskItem.GetMetadata(string metadataName) { throw null; }
Microsoft.Build.Framework.ITaskItem.RemoveMetadata(string metadataName)958         void Microsoft.Build.Framework.ITaskItem.RemoveMetadata(string metadataName) { }
Microsoft.Build.Framework.ITaskItem.SetMetadata(string metadataName, string metadataValue)959         void Microsoft.Build.Framework.ITaskItem.SetMetadata(string metadataName, string metadataValue) { }
Microsoft.Build.Framework.ITaskItem2.CloneCustomMetadataEscaped()960         System.Collections.IDictionary Microsoft.Build.Framework.ITaskItem2.CloneCustomMetadataEscaped() { throw null; }
Microsoft.Build.Framework.ITaskItem2.GetMetadataValueEscaped(string metadataName)961         string Microsoft.Build.Framework.ITaskItem2.GetMetadataValueEscaped(string metadataName) { throw null; }
Microsoft.Build.Framework.ITaskItem2.SetMetadataValueLiteral(string metadataName, string metadataValue)962         void Microsoft.Build.Framework.ITaskItem2.SetMetadataValueLiteral(string metadataName, string metadataValue) { }
RemoveMetadata(string metadataName)963         public void RemoveMetadata(string metadataName) { }
SetMetadata(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, string>> metadataDictionary)964         public void SetMetadata(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, string>> metadataDictionary) { }
SetMetadata(string name, string evaluatedValue)965         public Microsoft.Build.Execution.ProjectMetadataInstance SetMetadata(string name, string evaluatedValue) { throw null; }
966     }
967     public partial class ProjectMetadataInstance
968     {
ProjectMetadataInstance()969         internal ProjectMetadataInstance() { }
970         public string EvaluatedValue { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
971         public string Name { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
DeepClone()972         public Microsoft.Build.Execution.ProjectMetadataInstance DeepClone() { throw null; }
ToString()973         public override string ToString() { throw null; }
974     }
975     public partial class ProjectOnErrorInstance : Microsoft.Build.Execution.ProjectTargetInstanceChild
976     {
ProjectOnErrorInstance()977         internal ProjectOnErrorInstance() { }
978         public override string Condition { get { throw null; } }
979         public override Microsoft.Build.Construction.ElementLocation ConditionLocation { get { throw null; } }
980         public string ExecuteTargets { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
981         public Microsoft.Build.Construction.ElementLocation ExecuteTargetsLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
982         public override Microsoft.Build.Construction.ElementLocation Location { get { throw null; } }
983     }
984     public sealed partial class ProjectPropertyGroupTaskInstance : Microsoft.Build.Execution.ProjectTargetInstanceChild
985     {
ProjectPropertyGroupTaskInstance()986         internal ProjectPropertyGroupTaskInstance() { }
987         public override string Condition { get { throw null; } }
988         public override Microsoft.Build.Construction.ElementLocation ConditionLocation { get { throw null; } }
989         public Microsoft.Build.Construction.ElementLocation ExecuteTargetsLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
990         public override Microsoft.Build.Construction.ElementLocation Location { get { throw null; } }
991         public System.Collections.Generic.ICollection<Microsoft.Build.Execution.ProjectPropertyGroupTaskPropertyInstance> Properties { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
992     }
993     public partial class ProjectPropertyGroupTaskPropertyInstance
994     {
ProjectPropertyGroupTaskPropertyInstance()995         internal ProjectPropertyGroupTaskPropertyInstance() { }
996         public string Condition { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
997         public Microsoft.Build.Construction.ElementLocation ConditionLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
998         public Microsoft.Build.Construction.ElementLocation Location { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
999         public string Name { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1000         public string Value { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1001     }
1002     public partial class ProjectPropertyInstance
1003     {
ProjectPropertyInstance()1004         internal ProjectPropertyInstance() { }
1005         public string EvaluatedValue { get { throw null; } set { } }
1006         public virtual bool IsImmutable { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1007         public string Name { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
ToString()1008         public override string ToString() { throw null; }
1009     }
1010     public sealed partial class ProjectTargetInstance
1011     {
ProjectTargetInstance()1012         internal ProjectTargetInstance() { }
1013         public Microsoft.Build.Construction.ElementLocation AfterTargetsLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1014         public Microsoft.Build.Construction.ElementLocation BeforeTargetsLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1015         public System.Collections.Generic.IList<Microsoft.Build.Execution.ProjectTargetInstanceChild> Children { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1016         public string Condition { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1017         public Microsoft.Build.Construction.ElementLocation ConditionLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1018         public string DependsOnTargets { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1019         public Microsoft.Build.Construction.ElementLocation DependsOnTargetsLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1020         public string FullPath { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1021         public string Inputs { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1022         public Microsoft.Build.Construction.ElementLocation InputsLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1023         public string KeepDuplicateOutputs { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1024         public Microsoft.Build.Construction.ElementLocation KeepDuplicateOutputsLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1025         public Microsoft.Build.Construction.ElementLocation Location { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1026         public string Name { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1027         public System.Collections.Generic.IList<Microsoft.Build.Execution.ProjectOnErrorInstance> OnErrorChildren { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1028         public string Outputs { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1029         public Microsoft.Build.Construction.ElementLocation OutputsLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1030         public string Returns { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1031         public Microsoft.Build.Construction.ElementLocation ReturnsLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1032         public System.Collections.Generic.ICollection<Microsoft.Build.Execution.ProjectTaskInstance> Tasks { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1033     }
1034     public abstract partial class ProjectTargetInstanceChild
1035     {
ProjectTargetInstanceChild()1036         protected ProjectTargetInstanceChild() { }
1037         public abstract string Condition { get; }
1038         public abstract Microsoft.Build.Construction.ElementLocation ConditionLocation { get; }
1039         public string FullPath { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1040         public abstract Microsoft.Build.Construction.ElementLocation Location { get; }
1041     }
1042     public sealed partial class ProjectTaskInstance : Microsoft.Build.Execution.ProjectTargetInstanceChild
1043     {
ProjectTaskInstance()1044         internal ProjectTaskInstance() { }
1045         public override string Condition { get { throw null; } }
1046         public override Microsoft.Build.Construction.ElementLocation ConditionLocation { get { throw null; } }
1047         public string ContinueOnError { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1048         public Microsoft.Build.Construction.ElementLocation ContinueOnErrorLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1049         public override Microsoft.Build.Construction.ElementLocation Location { get { throw null; } }
1050         public string MSBuildArchitecture { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1051         public Microsoft.Build.Construction.ElementLocation MSBuildArchitectureLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1052         public string MSBuildRuntime { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1053         public Microsoft.Build.Construction.ElementLocation MSBuildRuntimeLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1054         public string Name { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1055         public System.Collections.Generic.IList<Microsoft.Build.Execution.ProjectTaskInstanceChild> Outputs { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1056         public System.Collections.Generic.IDictionary<string, string> Parameters { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1057     }
1058     public abstract partial class ProjectTaskInstanceChild
1059     {
ProjectTaskInstanceChild()1060         protected ProjectTaskInstanceChild() { }
1061         public abstract string Condition { get; }
1062         public abstract Microsoft.Build.Construction.ElementLocation ConditionLocation { get; }
1063         public abstract Microsoft.Build.Construction.ElementLocation Location { get; }
1064         public abstract Microsoft.Build.Construction.ElementLocation TaskParameterLocation { get; }
1065     }
1066     public partial class ProjectTaskOutputItemInstance : Microsoft.Build.Execution.ProjectTaskInstanceChild
1067     {
ProjectTaskOutputItemInstance()1068         internal ProjectTaskOutputItemInstance() { }
1069         public override string Condition { get { throw null; } }
1070         public override Microsoft.Build.Construction.ElementLocation ConditionLocation { get { throw null; } }
1071         public string ItemType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1072         public Microsoft.Build.Construction.ElementLocation ItemTypeLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1073         public override Microsoft.Build.Construction.ElementLocation Location { get { throw null; } }
1074         public string TaskParameter { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1075         public override Microsoft.Build.Construction.ElementLocation TaskParameterLocation { get { throw null; } }
1076     }
1077     public partial class ProjectTaskOutputPropertyInstance : Microsoft.Build.Execution.ProjectTaskInstanceChild
1078     {
ProjectTaskOutputPropertyInstance()1079         internal ProjectTaskOutputPropertyInstance() { }
1080         public override string Condition { get { throw null; } }
1081         public override Microsoft.Build.Construction.ElementLocation ConditionLocation { get { throw null; } }
1082         public override Microsoft.Build.Construction.ElementLocation Location { get { throw null; } }
1083         public string PropertyName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1084         public Microsoft.Build.Construction.ElementLocation PropertyNameLocation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1085         public string TaskParameter { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1086         public override Microsoft.Build.Construction.ElementLocation TaskParameterLocation { get { throw null; } }
1087     }
1088     public partial class TargetResult : Microsoft.Build.Execution.ITargetResult
1089     {
TargetResult()1090         internal TargetResult() { }
1091         public System.Exception Exception { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1092         public Microsoft.Build.Framework.ITaskItem[] Items { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1093         public Microsoft.Build.Execution.TargetResultCode ResultCode { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1094     }
1095     public enum TargetResultCode : byte
1096     {
1097         Failure = (byte)2,
1098         Skipped = (byte)0,
1099         Success = (byte)1,
1100     }
1101 }
1102 namespace Microsoft.Build.Internal
1103 {
1104     public enum NodeEngineShutdownReason
1105     {
1106         BuildComplete = 0,
1107         BuildCompleteReuse = 1,
1108         ConnectionFailed = 2,
1109         Error = 3,
1110     }
1111     public partial class OutOfProcNode
1112     {
OutOfProcNode()1113         public OutOfProcNode() { }
Run(out System.Exception shutdownException)1114         public Microsoft.Build.Internal.NodeEngineShutdownReason Run(out System.Exception shutdownException) { shutdownException = default(System.Exception); throw null; }
1115     }
1116 }
1117 namespace Microsoft.Build.Logging
1118 {
ColorResetter()1119     public delegate void ColorResetter();
ColorSetter(System.ConsoleColor color)1120     public delegate void ColorSetter(System.ConsoleColor color);
1121     public partial class ConfigurableForwardingLogger : Microsoft.Build.Framework.IForwardingLogger, Microsoft.Build.Framework.ILogger, Microsoft.Build.Framework.INodeLogger
1122     {
ConfigurableForwardingLogger()1123         public ConfigurableForwardingLogger() { }
1124         public Microsoft.Build.Framework.IEventRedirector BuildEventRedirector { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1125         public int NodeId { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1126         public string Parameters { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
1127         public Microsoft.Build.Framework.LoggerVerbosity Verbosity { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
Initialize(Microsoft.Build.Framework.IEventSource eventSource)1128         public void Initialize(Microsoft.Build.Framework.IEventSource eventSource) { }
Initialize(Microsoft.Build.Framework.IEventSource eventSource, int nodeCount)1129         public void Initialize(Microsoft.Build.Framework.IEventSource eventSource, int nodeCount) { }
Shutdown()1130         public void Shutdown() { }
1131     }
1132     public partial class ConsoleLogger : Microsoft.Build.Framework.ILogger
1133     {
ConsoleLogger()1134         public ConsoleLogger() { }
ConsoleLogger(Microsoft.Build.Framework.LoggerVerbosity verbosity)1135         public ConsoleLogger(Microsoft.Build.Framework.LoggerVerbosity verbosity) { }
ConsoleLogger(Microsoft.Build.Framework.LoggerVerbosity verbosity, Microsoft.Build.Logging.WriteHandler write, Microsoft.Build.Logging.ColorSetter colorSet, Microsoft.Build.Logging.ColorResetter colorReset)1136         public ConsoleLogger(Microsoft.Build.Framework.LoggerVerbosity verbosity, Microsoft.Build.Logging.WriteHandler write, Microsoft.Build.Logging.ColorSetter colorSet, Microsoft.Build.Logging.ColorResetter colorReset) { }
1137         public string Parameters { get { throw null; } set { } }
1138         public bool ShowSummary { get { throw null; } set { } }
1139         public bool SkipProjectStartedText { get { throw null; } set { } }
1140         public Microsoft.Build.Framework.LoggerVerbosity Verbosity { get { throw null; } set { } }
1141         protected Microsoft.Build.Logging.WriteHandler WriteHandler { get { throw null; } set { } }
ApplyParameter(string parameterName, string parameterValue)1142         public void ApplyParameter(string parameterName, string parameterValue) { }
BuildFinishedHandler(object sender, Microsoft.Build.Framework.BuildFinishedEventArgs e)1143         public void BuildFinishedHandler(object sender, Microsoft.Build.Framework.BuildFinishedEventArgs e) { }
BuildStartedHandler(object sender, Microsoft.Build.Framework.BuildStartedEventArgs e)1144         public void BuildStartedHandler(object sender, Microsoft.Build.Framework.BuildStartedEventArgs e) { }
1145         [System.MonoTODOAttribute]
CustomEventHandler(object sender, Microsoft.Build.Framework.CustomBuildEventArgs e)1146         public void CustomEventHandler(object sender, Microsoft.Build.Framework.CustomBuildEventArgs e) { }
ErrorHandler(object sender, Microsoft.Build.Framework.BuildErrorEventArgs e)1147         public void ErrorHandler(object sender, Microsoft.Build.Framework.BuildErrorEventArgs e) { }
Initialize(Microsoft.Build.Framework.IEventSource eventSource)1148         public virtual void Initialize(Microsoft.Build.Framework.IEventSource eventSource) { }
MessageHandler(object sender, Microsoft.Build.Framework.BuildMessageEventArgs e)1149         public void MessageHandler(object sender, Microsoft.Build.Framework.BuildMessageEventArgs e) { }
ProjectFinishedHandler(object sender, Microsoft.Build.Framework.ProjectFinishedEventArgs e)1150         public void ProjectFinishedHandler(object sender, Microsoft.Build.Framework.ProjectFinishedEventArgs e) { }
ProjectStartedHandler(object sender, Microsoft.Build.Framework.ProjectStartedEventArgs e)1151         public void ProjectStartedHandler(object sender, Microsoft.Build.Framework.ProjectStartedEventArgs e) { }
Shutdown()1152         public virtual void Shutdown() { }
TargetFinishedHandler(object sender, Microsoft.Build.Framework.TargetFinishedEventArgs e)1153         public void TargetFinishedHandler(object sender, Microsoft.Build.Framework.TargetFinishedEventArgs e) { }
TargetStartedHandler(object sender, Microsoft.Build.Framework.TargetStartedEventArgs e)1154         public void TargetStartedHandler(object sender, Microsoft.Build.Framework.TargetStartedEventArgs e) { }
TaskFinishedHandler(object sender, Microsoft.Build.Framework.TaskFinishedEventArgs e)1155         public void TaskFinishedHandler(object sender, Microsoft.Build.Framework.TaskFinishedEventArgs e) { }
TaskStartedHandler(object sender, Microsoft.Build.Framework.TaskStartedEventArgs e)1156         public void TaskStartedHandler(object sender, Microsoft.Build.Framework.TaskStartedEventArgs e) { }
WarningHandler(object sender, Microsoft.Build.Framework.BuildWarningEventArgs e)1157         public void WarningHandler(object sender, Microsoft.Build.Framework.BuildWarningEventArgs e) { }
1158     }
1159     public partial class FileLogger : Microsoft.Build.Logging.ConsoleLogger
1160     {
FileLogger()1161         public FileLogger() { }
Initialize(Microsoft.Build.Framework.IEventSource eventSource)1162         public override void Initialize(Microsoft.Build.Framework.IEventSource eventSource) { }
Shutdown()1163         public override void Shutdown() { }
1164     }
1165     public partial class ForwardingLoggerRecord
1166     {
ForwardingLoggerRecord(Microsoft.Build.Framework.ILogger centralLogger, Microsoft.Build.Logging.LoggerDescription forwardingLoggerDescription)1167         public ForwardingLoggerRecord(Microsoft.Build.Framework.ILogger centralLogger, Microsoft.Build.Logging.LoggerDescription forwardingLoggerDescription) { }
1168         public Microsoft.Build.Framework.ILogger CentralLogger { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1169         public Microsoft.Build.Logging.LoggerDescription ForwardingLoggerDescription { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1170     }
1171     public partial class LoggerDescription
1172     {
LoggerDescription(string loggerClassName, string loggerAssemblyName, string loggerAssemblyFile, string loggerSwitchParameters, Microsoft.Build.Framework.LoggerVerbosity verbosity)1173         public LoggerDescription(string loggerClassName, string loggerAssemblyName, string loggerAssemblyFile, string loggerSwitchParameters, Microsoft.Build.Framework.LoggerVerbosity verbosity) { }
1174         public string LoggerSwitchParameters { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
1175         public Microsoft.Build.Framework.LoggerVerbosity Verbosity { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
CreateLogger()1176         public Microsoft.Build.Framework.ILogger CreateLogger() { throw null; }
1177     }
WriteHandler(string message)1178     public delegate void WriteHandler(string message);
1179 }
1180 namespace System
1181 {
1182     [System.AttributeUsageAttribute((System.AttributeTargets)(32767), AllowMultiple=true)]
1183     internal partial class MonoDocumentationNoteAttribute : System.MonoTODOAttribute
1184     {
MonoDocumentationNoteAttribute(string comment)1185         public MonoDocumentationNoteAttribute(string comment) { }
1186     }
1187     [System.AttributeUsageAttribute((System.AttributeTargets)(32767), AllowMultiple=true)]
1188     internal partial class MonoExtensionAttribute : System.MonoTODOAttribute
1189     {
MonoExtensionAttribute(string comment)1190         public MonoExtensionAttribute(string comment) { }
1191     }
1192     [System.AttributeUsageAttribute((System.AttributeTargets)(32767), AllowMultiple=true)]
1193     internal partial class MonoInternalNoteAttribute : System.MonoTODOAttribute
1194     {
MonoInternalNoteAttribute(string comment)1195         public MonoInternalNoteAttribute(string comment) { }
1196     }
1197     [System.AttributeUsageAttribute((System.AttributeTargets)(32767), AllowMultiple=true)]
1198     internal partial class MonoLimitationAttribute : System.MonoTODOAttribute
1199     {
MonoLimitationAttribute(string comment)1200         public MonoLimitationAttribute(string comment) { }
1201     }
1202     [System.AttributeUsageAttribute((System.AttributeTargets)(32767), AllowMultiple=true)]
1203     internal partial class MonoNotSupportedAttribute : System.MonoTODOAttribute
1204     {
MonoNotSupportedAttribute(string comment)1205         public MonoNotSupportedAttribute(string comment) { }
1206     }
1207     [System.AttributeUsageAttribute((System.AttributeTargets)(32767), AllowMultiple=true)]
1208     internal partial class MonoTODOAttribute : System.Attribute
1209     {
MonoTODOAttribute()1210         public MonoTODOAttribute() { }
MonoTODOAttribute(string comment)1211         public MonoTODOAttribute(string comment) { }
1212         public string Comment { get { throw null; } }
1213     }
1214 }
1215