1 namespace Microsoft.Build.Construction 2 { 3 public abstract partial class ElementLocation 4 { ElementLocation()5 protected ElementLocation() { } 6 [System.Diagnostics.DebuggerBrowsableAttribute((System.Diagnostics.DebuggerBrowsableState)(0))] 7 public abstract int Column { get; } 8 [System.Diagnostics.DebuggerBrowsableAttribute((System.Diagnostics.DebuggerBrowsableState)(0))] 9 public abstract string File { get; } 10 [System.Diagnostics.DebuggerBrowsableAttribute((System.Diagnostics.DebuggerBrowsableState)(0))] 11 public abstract int Line { get; } 12 public string LocationString { get { throw null; } } Equals(object obj)13 public override bool Equals(object obj) { throw null; } GetHashCode()14 public override int GetHashCode() { throw null; } ToString()15 public override string ToString() { throw null; } 16 } 17 [System.Diagnostics.DebuggerDisplayAttribute("ProjectChooseElement (#Children={Count} HasOtherwise={OtherwiseElement != null})")] 18 public partial class ProjectChooseElement : Microsoft.Build.Construction.ProjectElementContainer 19 { ProjectChooseElement()20 internal ProjectChooseElement() { } 21 public override string Condition { get { throw null; } set { } } 22 public override Microsoft.Build.Construction.ElementLocation ConditionLocation { get { throw null; } } 23 public Microsoft.Build.Construction.ProjectOtherwiseElement OtherwiseElement { get { throw null; } } 24 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectWhenElement> WhenElements { get { throw null; } } CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner)25 protected override Microsoft.Build.Construction.ProjectElement CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner) { throw null; } 26 } 27 public sealed partial class ProjectConfigurationInSolution 28 { ProjectConfigurationInSolution()29 internal ProjectConfigurationInSolution() { } 30 public string ConfigurationName { get { throw null; } } 31 public string FullName { get { throw null; } } 32 public bool IncludeInBuild { get { throw null; } } 33 public string PlatformName { get { throw null; } } 34 } 35 public abstract partial class ProjectElement 36 { ProjectElement()37 internal ProjectElement() { } 38 public System.Collections.Generic.IEnumerable<Microsoft.Build.Construction.ProjectElementContainer> AllParents { get { throw null; } } 39 public virtual string Condition { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } [System.Diagnostics.DebuggerStepThroughAttribute]set { } } 40 public virtual Microsoft.Build.Construction.ElementLocation ConditionLocation { get { throw null; } } 41 public Microsoft.Build.Construction.ProjectRootElement ContainingProject { get { throw null; } } 42 public string Label { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } [System.Diagnostics.DebuggerStepThroughAttribute]set { } } 43 public Microsoft.Build.Construction.ElementLocation LabelLocation { get { throw null; } } 44 public Microsoft.Build.Construction.ElementLocation Location { get { throw null; } } 45 public Microsoft.Build.Construction.ProjectElement NextSibling { [System.Diagnostics.DebuggerStepThroughAttribute, System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } } 46 public Microsoft.Build.Construction.ProjectElementContainer Parent { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 47 public Microsoft.Build.Construction.ProjectElement PreviousSibling { [System.Diagnostics.DebuggerStepThroughAttribute, System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } } Clone()48 public Microsoft.Build.Construction.ProjectElement Clone() { throw null; } Clone(Microsoft.Build.Construction.ProjectRootElement factory)49 protected internal virtual Microsoft.Build.Construction.ProjectElement Clone(Microsoft.Build.Construction.ProjectRootElement factory) { throw null; } CopyFrom(Microsoft.Build.Construction.ProjectElement element)50 public virtual void CopyFrom(Microsoft.Build.Construction.ProjectElement element) { } CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner)51 protected abstract Microsoft.Build.Construction.ProjectElement CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner); 52 } 53 public abstract partial class ProjectElementContainer : Microsoft.Build.Construction.ProjectElement 54 { ProjectElementContainer()55 internal ProjectElementContainer() { } 56 public System.Collections.Generic.IEnumerable<Microsoft.Build.Construction.ProjectElement> AllChildren { get { throw null; } } 57 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectElement> Children { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 58 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectElement> ChildrenReversed { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 59 public int Count { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 60 public Microsoft.Build.Construction.ProjectElement FirstChild { [System.Diagnostics.DebuggerStepThroughAttribute, System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } } 61 public Microsoft.Build.Construction.ProjectElement LastChild { [System.Diagnostics.DebuggerStepThroughAttribute, System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } } AppendChild(Microsoft.Build.Construction.ProjectElement child)62 public void AppendChild(Microsoft.Build.Construction.ProjectElement child) { } DeepClone(Microsoft.Build.Construction.ProjectRootElement factory, Microsoft.Build.Construction.ProjectElementContainer parent)63 protected internal virtual Microsoft.Build.Construction.ProjectElementContainer DeepClone(Microsoft.Build.Construction.ProjectRootElement factory, Microsoft.Build.Construction.ProjectElementContainer parent) { throw null; } DeepCopyFrom(Microsoft.Build.Construction.ProjectElementContainer element)64 public virtual void DeepCopyFrom(Microsoft.Build.Construction.ProjectElementContainer element) { } InsertAfterChild(Microsoft.Build.Construction.ProjectElement child, Microsoft.Build.Construction.ProjectElement reference)65 public void InsertAfterChild(Microsoft.Build.Construction.ProjectElement child, Microsoft.Build.Construction.ProjectElement reference) { } InsertBeforeChild(Microsoft.Build.Construction.ProjectElement child, Microsoft.Build.Construction.ProjectElement reference)66 public void InsertBeforeChild(Microsoft.Build.Construction.ProjectElement child, Microsoft.Build.Construction.ProjectElement reference) { } PrependChild(Microsoft.Build.Construction.ProjectElement child)67 public void PrependChild(Microsoft.Build.Construction.ProjectElement child) { } RemoveAllChildren()68 public void RemoveAllChildren() { } RemoveChild(Microsoft.Build.Construction.ProjectElement child)69 public void RemoveChild(Microsoft.Build.Construction.ProjectElement child) { } 70 } 71 public partial class ProjectExtensionsElement : Microsoft.Build.Construction.ProjectElement 72 { ProjectExtensionsElement()73 internal ProjectExtensionsElement() { } 74 public override string Condition { get { throw null; } set { } } 75 public override Microsoft.Build.Construction.ElementLocation ConditionLocation { get { throw null; } } 76 public string Content { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } set { } } 77 public string this[string name] { get { throw null; } set { } } CopyFrom(Microsoft.Build.Construction.ProjectElement element)78 public override void CopyFrom(Microsoft.Build.Construction.ProjectElement element) { } CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner)79 protected override Microsoft.Build.Construction.ProjectElement CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner) { throw null; } 80 } 81 [System.Diagnostics.DebuggerDisplayAttribute("Project={Project} Condition={Condition}")] 82 public partial class ProjectImportElement : Microsoft.Build.Construction.ProjectElement 83 { ProjectImportElement()84 internal ProjectImportElement() { } 85 public string Project { get { throw null; } set { } } 86 public Microsoft.Build.Construction.ElementLocation ProjectLocation { get { throw null; } } CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner)87 protected override Microsoft.Build.Construction.ProjectElement CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner) { throw null; } 88 } 89 [System.Diagnostics.DebuggerDisplayAttribute("#Imports={Count} Condition={Condition} Label={Label}")] 90 public partial class ProjectImportGroupElement : Microsoft.Build.Construction.ProjectElementContainer 91 { ProjectImportGroupElement()92 internal ProjectImportGroupElement() { } 93 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectImportElement> Imports { get { throw null; } } AddImport(string project)94 public Microsoft.Build.Construction.ProjectImportElement AddImport(string project) { throw null; } CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner)95 protected override Microsoft.Build.Construction.ProjectElement CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner) { throw null; } 96 } 97 public sealed partial class ProjectInSolution 98 { ProjectInSolution()99 internal ProjectInSolution() { } 100 public string AbsolutePath { get { throw null; } } 101 public System.Collections.Generic.IReadOnlyList<string> Dependencies { get { throw null; } } 102 public string ParentProjectGuid { get { throw null; } } 103 public System.Collections.Generic.IReadOnlyDictionary<string, Microsoft.Build.Construction.ProjectConfigurationInSolution> ProjectConfigurations { get { throw null; } } 104 public string ProjectGuid { get { throw null; } } 105 public string ProjectName { get { throw null; } } 106 public Microsoft.Build.Construction.SolutionProjectType ProjectType { get { throw null; } set { } } 107 public string RelativePath { get { throw null; } } 108 } 109 [System.Diagnostics.DebuggerDisplayAttribute("{ItemType} #Metadata={Count} Condition={Condition}")] 110 public partial class ProjectItemDefinitionElement : Microsoft.Build.Construction.ProjectElementContainer 111 { ProjectItemDefinitionElement()112 internal ProjectItemDefinitionElement() { } 113 public string ItemType { get { throw null; } } 114 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectMetadataElement> Metadata { get { throw null; } } AddMetadata(string name, string unevaluatedValue)115 public Microsoft.Build.Construction.ProjectMetadataElement AddMetadata(string name, string unevaluatedValue) { throw null; } CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner)116 protected override Microsoft.Build.Construction.ProjectElement CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner) { throw null; } 117 } 118 [System.Diagnostics.DebuggerDisplayAttribute("#ItemDefinitions={Count} Condition={Condition} Label={Label}")] 119 public partial class ProjectItemDefinitionGroupElement : Microsoft.Build.Construction.ProjectElementContainer 120 { ProjectItemDefinitionGroupElement()121 internal ProjectItemDefinitionGroupElement() { } 122 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemDefinitionElement> ItemDefinitions { get { throw null; } } AddItemDefinition(string itemType)123 public Microsoft.Build.Construction.ProjectItemDefinitionElement AddItemDefinition(string itemType) { throw null; } CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner)124 protected override Microsoft.Build.Construction.ProjectElement CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner) { throw null; } 125 } 126 [System.Diagnostics.DebuggerDisplayAttribute("{ItemType} Include={Include} Exclude={Exclude} #Metadata={Count} Condition={Condition}")] 127 public partial class ProjectItemElement : Microsoft.Build.Construction.ProjectElementContainer 128 { ProjectItemElement()129 internal ProjectItemElement() { } 130 public string Exclude { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } set { } } 131 public Microsoft.Build.Construction.ElementLocation ExcludeLocation { get { throw null; } } 132 public bool HasMetadata { get { throw null; } } 133 public string Include { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } set { } } 134 public Microsoft.Build.Construction.ElementLocation IncludeLocation { get { throw null; } } 135 public string ItemType { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } set { } } 136 public string KeepDuplicates { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } set { } } 137 public Microsoft.Build.Construction.ElementLocation KeepDuplicatesLocation { get { throw null; } } 138 public string KeepMetadata { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } set { } } 139 public Microsoft.Build.Construction.ElementLocation KeepMetadataLocation { get { throw null; } } 140 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectMetadataElement> Metadata { get { throw null; } } 141 public string Remove { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } set { } } 142 public Microsoft.Build.Construction.ElementLocation RemoveLocation { get { throw null; } } 143 public string RemoveMetadata { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } set { } } 144 public Microsoft.Build.Construction.ElementLocation RemoveMetadataLocation { get { throw null; } } AddMetadata(string name, string unevaluatedValue)145 public Microsoft.Build.Construction.ProjectMetadataElement AddMetadata(string name, string unevaluatedValue) { throw null; } CopyFrom(Microsoft.Build.Construction.ProjectElement element)146 public override void CopyFrom(Microsoft.Build.Construction.ProjectElement element) { } CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner)147 protected override Microsoft.Build.Construction.ProjectElement CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner) { throw null; } 148 } 149 [System.Diagnostics.DebuggerDisplayAttribute("#Items={Count} Condition={Condition} Label={Label}")] 150 public partial class ProjectItemGroupElement : Microsoft.Build.Construction.ProjectElementContainer 151 { ProjectItemGroupElement()152 internal ProjectItemGroupElement() { } 153 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemElement> Items { get { throw null; } } AddItem(string itemType, string include)154 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)155 public Microsoft.Build.Construction.ProjectItemElement AddItem(string itemType, string include, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, string>> metadata) { throw null; } CopyFrom(Microsoft.Build.Construction.ProjectElement element)156 public override void CopyFrom(Microsoft.Build.Construction.ProjectElement element) { } CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner)157 protected override Microsoft.Build.Construction.ProjectElement CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner) { throw null; } 158 } 159 [System.Diagnostics.DebuggerDisplayAttribute("{Name} Value={Value} Condition={Condition}")] 160 public partial class ProjectMetadataElement : Microsoft.Build.Construction.ProjectElement 161 { ProjectMetadataElement()162 internal ProjectMetadataElement() { } 163 public string Name { get { throw null; } set { } } 164 public string Value { get { throw null; } set { } } CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner)165 protected override Microsoft.Build.Construction.ProjectElement CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner) { throw null; } 166 } 167 [System.Diagnostics.DebuggerDisplayAttribute("ExecuteTargets={ExecuteTargets}")] 168 public partial class ProjectOnErrorElement : Microsoft.Build.Construction.ProjectElement 169 { ProjectOnErrorElement()170 internal ProjectOnErrorElement() { } 171 public string ExecuteTargetsAttribute { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } set { } } 172 public Microsoft.Build.Construction.ElementLocation ExecuteTargetsLocation { get { throw null; } } CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner)173 protected override Microsoft.Build.Construction.ProjectElement CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner) { throw null; } 174 } 175 [System.Diagnostics.DebuggerDisplayAttribute("#Children={Count}")] 176 public partial class ProjectOtherwiseElement : Microsoft.Build.Construction.ProjectElementContainer 177 { ProjectOtherwiseElement()178 internal ProjectOtherwiseElement() { } 179 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectChooseElement> ChooseElements { get { throw null; } } 180 public override string Condition { get { throw null; } set { } } 181 public override Microsoft.Build.Construction.ElementLocation ConditionLocation { get { throw null; } } 182 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemGroupElement> ItemGroups { get { throw null; } } 183 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectPropertyGroupElement> PropertyGroups { get { throw null; } } CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner)184 protected override Microsoft.Build.Construction.ProjectElement CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner) { throw null; } 185 } 186 [System.Diagnostics.DebuggerDisplayAttribute("Name={Name} TaskParameter={TaskParameter} ItemName={ItemName} PropertyName={PropertyName} Condition={Condition}")] 187 public partial class ProjectOutputElement : Microsoft.Build.Construction.ProjectElement 188 { ProjectOutputElement()189 internal ProjectOutputElement() { } 190 public bool IsOutputItem { get { throw null; } } 191 public bool IsOutputProperty { get { throw null; } } 192 public string ItemType { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } set { } } 193 public Microsoft.Build.Construction.ElementLocation ItemTypeLocation { get { throw null; } } 194 public string PropertyName { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } set { } } 195 public Microsoft.Build.Construction.ElementLocation PropertyNameLocation { get { throw null; } } 196 public string TaskParameter { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } [System.Diagnostics.DebuggerStepThroughAttribute]set { } } 197 public Microsoft.Build.Construction.ElementLocation TaskParameterLocation { get { throw null; } } CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner)198 protected override Microsoft.Build.Construction.ProjectElement CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner) { throw null; } 199 } 200 [System.Diagnostics.DebuggerDisplayAttribute("{Name} Value={Value} Condition={Condition}")] 201 public partial class ProjectPropertyElement : Microsoft.Build.Construction.ProjectElement 202 { ProjectPropertyElement()203 internal ProjectPropertyElement() { } 204 public string Name { get { throw null; } set { } } 205 public string Value { get { throw null; } set { } } CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner)206 protected override Microsoft.Build.Construction.ProjectElement CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner) { throw null; } 207 } 208 [System.Diagnostics.DebuggerDisplayAttribute("#Properties={Count} Condition={Condition} Label={Label}")] 209 public partial class ProjectPropertyGroupElement : Microsoft.Build.Construction.ProjectElementContainer 210 { ProjectPropertyGroupElement()211 internal ProjectPropertyGroupElement() { } 212 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectPropertyElement> Properties { get { throw null; } } 213 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectPropertyElement> PropertiesReversed { get { throw null; } } AddProperty(string name, string unevaluatedValue)214 public Microsoft.Build.Construction.ProjectPropertyElement AddProperty(string name, string unevaluatedValue) { throw null; } CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner)215 protected override Microsoft.Build.Construction.ProjectElement CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner) { throw null; } SetProperty(string name, string unevaluatedValue)216 public Microsoft.Build.Construction.ProjectPropertyElement SetProperty(string name, string unevaluatedValue) { throw null; } 217 } 218 [System.Diagnostics.DebuggerDisplayAttribute("{FullPath} #Children={Count} DefaultTargets={DefaultTargets} ToolsVersion={ToolsVersion} InitialTargets={InitialTargets} ExplicitlyLoaded={IsExplicitlyLoaded}")] 219 public partial class ProjectRootElement : Microsoft.Build.Construction.ProjectElementContainer 220 { ProjectRootElement()221 internal ProjectRootElement() { } 222 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectChooseElement> ChooseElements { get { throw null; } } 223 public override string Condition { get { throw null; } set { } } 224 public override Microsoft.Build.Construction.ElementLocation ConditionLocation { get { throw null; } } 225 public string DefaultTargets { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } [System.Diagnostics.DebuggerStepThroughAttribute]set { } } 226 public Microsoft.Build.Construction.ElementLocation DefaultTargetsLocation { get { throw null; } } 227 public string DirectoryPath { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 228 public System.Text.Encoding Encoding { get { throw null; } } 229 public string FullPath { get { throw null; } set { } } 230 public bool HasUnsavedChanges { get { throw null; } } 231 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectImportGroupElement> ImportGroups { get { throw null; } } 232 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectImportGroupElement> ImportGroupsReversed { get { throw null; } } 233 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectImportElement> Imports { get { throw null; } } 234 public string InitialTargets { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } [System.Diagnostics.DebuggerStepThroughAttribute]set { } } 235 public Microsoft.Build.Construction.ElementLocation InitialTargetsLocation { get { throw null; } } 236 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemDefinitionGroupElement> ItemDefinitionGroups { get { throw null; } } 237 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemDefinitionGroupElement> ItemDefinitionGroupsReversed { get { throw null; } } 238 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemDefinitionElement> ItemDefinitions { get { throw null; } } 239 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemGroupElement> ItemGroups { get { throw null; } } 240 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemGroupElement> ItemGroupsReversed { get { throw null; } } 241 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemElement> Items { get { throw null; } } 242 public System.DateTime LastWriteTimeWhenRead { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 243 public Microsoft.Build.Construction.ElementLocation ProjectFileLocation { get { throw null; } } 244 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectPropertyElement> Properties { get { throw null; } } 245 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectPropertyGroupElement> PropertyGroups { get { throw null; } } 246 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectPropertyGroupElement> PropertyGroupsReversed { get { throw null; } } 247 public string RawXml { get { throw null; } } 248 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectTargetElement> Targets { get { throw null; } } 249 public System.DateTime TimeLastChanged { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 250 public string ToolsVersion { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } [System.Diagnostics.DebuggerStepThroughAttribute]set { } } 251 public Microsoft.Build.Construction.ElementLocation ToolsVersionLocation { get { throw null; } } 252 public string TreatAsLocalProperty { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } [System.Diagnostics.DebuggerStepThroughAttribute]set { } } 253 public Microsoft.Build.Construction.ElementLocation TreatAsLocalPropertyLocation { get { throw null; } } 254 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectUsingTaskElement> UsingTasks { get { throw null; } } 255 public int Version { get { throw null; } } AddImport(string project)256 public Microsoft.Build.Construction.ProjectImportElement AddImport(string project) { throw null; } AddImportGroup()257 public Microsoft.Build.Construction.ProjectImportGroupElement AddImportGroup() { throw null; } AddItem(string itemType, string include)258 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)259 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)260 public Microsoft.Build.Construction.ProjectItemDefinitionElement AddItemDefinition(string itemType) { throw null; } AddItemDefinitionGroup()261 public Microsoft.Build.Construction.ProjectItemDefinitionGroupElement AddItemDefinitionGroup() { throw null; } AddItemGroup()262 public Microsoft.Build.Construction.ProjectItemGroupElement AddItemGroup() { throw null; } AddProperty(string name, string value)263 public Microsoft.Build.Construction.ProjectPropertyElement AddProperty(string name, string value) { throw null; } AddPropertyGroup()264 public Microsoft.Build.Construction.ProjectPropertyGroupElement AddPropertyGroup() { throw null; } AddTarget(string name)265 public Microsoft.Build.Construction.ProjectTargetElement AddTarget(string name) { throw null; } AddUsingTask(string name, string assemblyFile, string assemblyName)266 public Microsoft.Build.Construction.ProjectUsingTaskElement AddUsingTask(string name, string assemblyFile, string assemblyName) { throw null; } Create()267 public static Microsoft.Build.Construction.ProjectRootElement Create() { throw null; } Create(Microsoft.Build.Evaluation.ProjectCollection projectCollection)268 public static Microsoft.Build.Construction.ProjectRootElement Create(Microsoft.Build.Evaluation.ProjectCollection projectCollection) { throw null; } Create(string path)269 public static Microsoft.Build.Construction.ProjectRootElement Create(string path) { throw null; } Create(string path, Microsoft.Build.Evaluation.ProjectCollection projectCollection)270 public static Microsoft.Build.Construction.ProjectRootElement Create(string path, Microsoft.Build.Evaluation.ProjectCollection projectCollection) { throw null; } Create(System.Xml.XmlReader xmlReader)271 public static Microsoft.Build.Construction.ProjectRootElement Create(System.Xml.XmlReader xmlReader) { throw null; } Create(System.Xml.XmlReader xmlReader, Microsoft.Build.Evaluation.ProjectCollection projectCollection)272 public static Microsoft.Build.Construction.ProjectRootElement Create(System.Xml.XmlReader xmlReader, Microsoft.Build.Evaluation.ProjectCollection projectCollection) { throw null; } CreateChooseElement()273 public Microsoft.Build.Construction.ProjectChooseElement CreateChooseElement() { throw null; } CreateImportElement(string project)274 public Microsoft.Build.Construction.ProjectImportElement CreateImportElement(string project) { throw null; } CreateImportGroupElement()275 public Microsoft.Build.Construction.ProjectImportGroupElement CreateImportGroupElement() { throw null; } CreateItemDefinitionElement(string itemType)276 public Microsoft.Build.Construction.ProjectItemDefinitionElement CreateItemDefinitionElement(string itemType) { throw null; } CreateItemDefinitionGroupElement()277 public Microsoft.Build.Construction.ProjectItemDefinitionGroupElement CreateItemDefinitionGroupElement() { throw null; } CreateItemElement(string itemType)278 public Microsoft.Build.Construction.ProjectItemElement CreateItemElement(string itemType) { throw null; } CreateItemElement(string itemType, string include)279 public Microsoft.Build.Construction.ProjectItemElement CreateItemElement(string itemType, string include) { throw null; } CreateItemGroupElement()280 public Microsoft.Build.Construction.ProjectItemGroupElement CreateItemGroupElement() { throw null; } CreateMetadataElement(string name)281 public Microsoft.Build.Construction.ProjectMetadataElement CreateMetadataElement(string name) { throw null; } CreateMetadataElement(string name, string unevaluatedValue)282 public Microsoft.Build.Construction.ProjectMetadataElement CreateMetadataElement(string name, string unevaluatedValue) { throw null; } CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner)283 protected override Microsoft.Build.Construction.ProjectElement CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner) { throw null; } CreateOnErrorElement(string executeTargets)284 public Microsoft.Build.Construction.ProjectOnErrorElement CreateOnErrorElement(string executeTargets) { throw null; } CreateOtherwiseElement()285 public Microsoft.Build.Construction.ProjectOtherwiseElement CreateOtherwiseElement() { throw null; } CreateOutputElement(string taskParameter, string itemType, string propertyName)286 public Microsoft.Build.Construction.ProjectOutputElement CreateOutputElement(string taskParameter, string itemType, string propertyName) { throw null; } CreateProjectExtensionsElement()287 public Microsoft.Build.Construction.ProjectExtensionsElement CreateProjectExtensionsElement() { throw null; } CreatePropertyElement(string name)288 public Microsoft.Build.Construction.ProjectPropertyElement CreatePropertyElement(string name) { throw null; } CreatePropertyGroupElement()289 public Microsoft.Build.Construction.ProjectPropertyGroupElement CreatePropertyGroupElement() { throw null; } CreateTargetElement(string name)290 public Microsoft.Build.Construction.ProjectTargetElement CreateTargetElement(string name) { throw null; } CreateTaskElement(string name)291 public Microsoft.Build.Construction.ProjectTaskElement CreateTaskElement(string name) { throw null; } CreateUsingTaskBodyElement(string evaluate, string body)292 public Microsoft.Build.Construction.ProjectUsingTaskBodyElement CreateUsingTaskBodyElement(string evaluate, string body) { throw null; } CreateUsingTaskElement(string taskName, string assemblyFile, string assemblyName)293 public Microsoft.Build.Construction.ProjectUsingTaskElement CreateUsingTaskElement(string taskName, string assemblyFile, string assemblyName) { throw null; } CreateUsingTaskElement(string taskName, string assemblyFile, string assemblyName, string runtime, string architecture)294 public Microsoft.Build.Construction.ProjectUsingTaskElement CreateUsingTaskElement(string taskName, string assemblyFile, string assemblyName, string runtime, string architecture) { throw null; } CreateUsingTaskParameterElement(string name, string output, string required, string parameterType)295 public Microsoft.Build.Construction.ProjectUsingTaskParameterElement CreateUsingTaskParameterElement(string name, string output, string required, string parameterType) { throw null; } CreateUsingTaskParameterGroupElement()296 public Microsoft.Build.Construction.UsingTaskParameterGroupElement CreateUsingTaskParameterGroupElement() { throw null; } CreateWhenElement(string condition)297 public Microsoft.Build.Construction.ProjectWhenElement CreateWhenElement(string condition) { throw null; } DeepClone()298 public Microsoft.Build.Construction.ProjectRootElement DeepClone() { throw null; } Open(string path)299 public static Microsoft.Build.Construction.ProjectRootElement Open(string path) { throw null; } Open(string path, Microsoft.Build.Evaluation.ProjectCollection projectCollection)300 public static Microsoft.Build.Construction.ProjectRootElement Open(string path, Microsoft.Build.Evaluation.ProjectCollection projectCollection) { throw null; } Save()301 public void Save() { } Save(System.IO.TextWriter writer)302 public void Save(System.IO.TextWriter writer) { } Save(string path)303 public void Save(string path) { } Save(string path, System.Text.Encoding encoding)304 public void Save(string path, System.Text.Encoding encoding) { } Save(System.Text.Encoding saveEncoding)305 public void Save(System.Text.Encoding saveEncoding) { } TryOpen(string path)306 public static Microsoft.Build.Construction.ProjectRootElement TryOpen(string path) { throw null; } TryOpen(string path, Microsoft.Build.Evaluation.ProjectCollection projectCollection)307 public static Microsoft.Build.Construction.ProjectRootElement TryOpen(string path, Microsoft.Build.Evaluation.ProjectCollection projectCollection) { throw null; } 308 } 309 [System.Diagnostics.DebuggerDisplayAttribute("Name={Name} #Children={Count} Condition={Condition}")] 310 public partial class ProjectTargetElement : Microsoft.Build.Construction.ProjectElementContainer 311 { ProjectTargetElement()312 internal ProjectTargetElement() { } 313 public string AfterTargets { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } set { } } 314 public Microsoft.Build.Construction.ElementLocation AfterTargetsLocation { get { throw null; } } 315 public string BeforeTargets { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } set { } } 316 public Microsoft.Build.Construction.ElementLocation BeforeTargetsLocation { get { throw null; } } 317 public string DependsOnTargets { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } set { } } 318 public Microsoft.Build.Construction.ElementLocation DependsOnTargetsLocation { get { throw null; } } 319 public string Inputs { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } set { } } 320 public Microsoft.Build.Construction.ElementLocation InputsLocation { get { throw null; } } 321 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemGroupElement> ItemGroups { get { throw null; } } 322 public string KeepDuplicateOutputs { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } set { } } 323 public Microsoft.Build.Construction.ElementLocation KeepDuplicateOutputsLocation { get { throw null; } } 324 public string Name { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } set { } } 325 public Microsoft.Build.Construction.ElementLocation NameLocation { get { throw null; } } 326 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectOnErrorElement> OnErrors { get { throw null; } } 327 public string Outputs { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } set { } } 328 public Microsoft.Build.Construction.ElementLocation OutputsLocation { get { throw null; } } 329 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectPropertyGroupElement> PropertyGroups { get { throw null; } } 330 public string Returns { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } set { } } 331 public Microsoft.Build.Construction.ElementLocation ReturnsLocation { get { throw null; } } 332 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectTaskElement> Tasks { get { throw null; } } AddItemGroup()333 public Microsoft.Build.Construction.ProjectItemGroupElement AddItemGroup() { throw null; } AddPropertyGroup()334 public Microsoft.Build.Construction.ProjectPropertyGroupElement AddPropertyGroup() { throw null; } AddTask(string taskName)335 public Microsoft.Build.Construction.ProjectTaskElement AddTask(string taskName) { throw null; } CopyFrom(Microsoft.Build.Construction.ProjectElement element)336 public override void CopyFrom(Microsoft.Build.Construction.ProjectElement element) { } CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner)337 protected override Microsoft.Build.Construction.ProjectElement CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner) { throw null; } 338 } 339 [System.Diagnostics.DebuggerDisplayAttribute("{Name} Condition={Condition} ContinueOnError={ContinueOnError} MSBuildRuntime={MSBuildRuntime} MSBuildArchitecture={MSBuildArchitecture} #Outputs={Count}")] 340 public partial class ProjectTaskElement : Microsoft.Build.Construction.ProjectElementContainer 341 { ProjectTaskElement()342 internal ProjectTaskElement() { } 343 public string ContinueOnError { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } [System.Diagnostics.DebuggerStepThroughAttribute]set { } } 344 public Microsoft.Build.Construction.ElementLocation ContinueOnErrorLocation { get { throw null; } } 345 public string MSBuildArchitecture { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } [System.Diagnostics.DebuggerStepThroughAttribute]set { } } 346 public Microsoft.Build.Construction.ElementLocation MSBuildArchitectureLocation { get { throw null; } } 347 public string MSBuildRuntime { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } [System.Diagnostics.DebuggerStepThroughAttribute]set { } } 348 public Microsoft.Build.Construction.ElementLocation MSBuildRuntimeLocation { get { throw null; } } 349 public string Name { get { throw null; } } 350 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectOutputElement> Outputs { get { throw null; } } 351 public System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, Microsoft.Build.Construction.ElementLocation>> ParameterLocations { get { throw null; } } 352 public System.Collections.Generic.IDictionary<string, string> Parameters { get { throw null; } } AddOutputItem(string taskParameter, string itemType)353 public Microsoft.Build.Construction.ProjectOutputElement AddOutputItem(string taskParameter, string itemType) { throw null; } AddOutputItem(string taskParameter, string itemType, string condition)354 public Microsoft.Build.Construction.ProjectOutputElement AddOutputItem(string taskParameter, string itemType, string condition) { throw null; } AddOutputProperty(string taskParameter, string propertyName)355 public Microsoft.Build.Construction.ProjectOutputElement AddOutputProperty(string taskParameter, string propertyName) { throw null; } AddOutputProperty(string taskParameter, string propertyName, string condition)356 public Microsoft.Build.Construction.ProjectOutputElement AddOutputProperty(string taskParameter, string propertyName, string condition) { throw null; } CopyFrom(Microsoft.Build.Construction.ProjectElement element)357 public override void CopyFrom(Microsoft.Build.Construction.ProjectElement element) { } CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner)358 protected override Microsoft.Build.Construction.ProjectElement CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner) { throw null; } GetParameter(string name)359 public string GetParameter(string name) { throw null; } RemoveAllParameters()360 public void RemoveAllParameters() { } RemoveParameter(string name)361 public void RemoveParameter(string name) { } SetParameter(string name, string unevaluatedValue)362 public void SetParameter(string name, string unevaluatedValue) { } 363 } 364 [System.Diagnostics.DebuggerDisplayAttribute("Evaluate={Evaluate} TaskBody={TaskBody}")] 365 public partial class ProjectUsingTaskBodyElement : Microsoft.Build.Construction.ProjectElement 366 { ProjectUsingTaskBodyElement()367 internal ProjectUsingTaskBodyElement() { } 368 public override string Condition { get { throw null; } set { } } 369 public override Microsoft.Build.Construction.ElementLocation ConditionLocation { get { throw null; } } 370 public string Evaluate { get { throw null; } set { } } 371 public Microsoft.Build.Construction.ElementLocation EvaluateLocation { get { throw null; } } 372 public string TaskBody { get { throw null; } set { } } CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner)373 protected override Microsoft.Build.Construction.ProjectElement CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner) { throw null; } 374 } 375 [System.Diagnostics.DebuggerDisplayAttribute("TaskName={TaskName} AssemblyName={AssemblyName} AssemblyFile={AssemblyFile} Condition={Condition} Runtime={Runtime} Architecture={Architecture}")] 376 public partial class ProjectUsingTaskElement : Microsoft.Build.Construction.ProjectElementContainer 377 { ProjectUsingTaskElement()378 internal ProjectUsingTaskElement() { } 379 public string Architecture { get { throw null; } set { } } 380 public Microsoft.Build.Construction.ElementLocation ArchitectureLocation { get { throw null; } } 381 public string AssemblyFile { get { throw null; } set { } } 382 public Microsoft.Build.Construction.ElementLocation AssemblyFileLocation { get { throw null; } } 383 public string AssemblyName { get { throw null; } set { } } 384 public Microsoft.Build.Construction.ElementLocation AssemblyNameLocation { get { throw null; } } 385 public Microsoft.Build.Construction.UsingTaskParameterGroupElement ParameterGroup { get { throw null; } } 386 public string Runtime { get { throw null; } set { } } 387 public Microsoft.Build.Construction.ElementLocation RuntimeLocation { get { throw null; } } 388 public Microsoft.Build.Construction.ProjectUsingTaskBodyElement TaskBody { get { throw null; } } 389 public string TaskFactory { get { throw null; } set { } } 390 public Microsoft.Build.Construction.ElementLocation TaskFactoryLocation { get { throw null; } } 391 public string TaskName { get { throw null; } set { } } 392 public Microsoft.Build.Construction.ElementLocation TaskNameLocation { get { throw null; } } AddParameterGroup()393 public Microsoft.Build.Construction.UsingTaskParameterGroupElement AddParameterGroup() { throw null; } AddUsingTaskBody(string evaluate, string taskBody)394 public Microsoft.Build.Construction.ProjectUsingTaskBodyElement AddUsingTaskBody(string evaluate, string taskBody) { throw null; } CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner)395 protected override Microsoft.Build.Construction.ProjectElement CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner) { throw null; } 396 } 397 [System.Diagnostics.DebuggerDisplayAttribute("Name={Name} ParameterType={ParameterType} Output={Output} Required={Required}")] 398 public partial class ProjectUsingTaskParameterElement : Microsoft.Build.Construction.ProjectElement 399 { ProjectUsingTaskParameterElement()400 internal ProjectUsingTaskParameterElement() { } 401 public override string Condition { get { throw null; } set { } } 402 public override Microsoft.Build.Construction.ElementLocation ConditionLocation { get { throw null; } } 403 public string Name { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } set { } } 404 public string Output { get { throw null; } set { } } 405 public Microsoft.Build.Construction.ElementLocation OutputLocation { get { throw null; } } 406 public string ParameterType { get { throw null; } set { } } 407 public Microsoft.Build.Construction.ElementLocation ParameterTypeLocation { get { throw null; } } 408 public string Required { get { throw null; } set { } } 409 public Microsoft.Build.Construction.ElementLocation RequiredLocation { get { throw null; } } CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner)410 protected override Microsoft.Build.Construction.ProjectElement CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner) { throw null; } 411 } 412 [System.Diagnostics.DebuggerDisplayAttribute("#Children={Count} Condition={Condition}")] 413 public partial class ProjectWhenElement : Microsoft.Build.Construction.ProjectElementContainer 414 { ProjectWhenElement()415 internal ProjectWhenElement() { } 416 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectChooseElement> ChooseElements { get { throw null; } } 417 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectItemGroupElement> ItemGroups { get { throw null; } } 418 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectPropertyGroupElement> PropertyGroups { get { throw null; } } CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner)419 protected override Microsoft.Build.Construction.ProjectElement CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner) { throw null; } 420 } 421 public sealed partial class SolutionConfigurationInSolution 422 { SolutionConfigurationInSolution()423 internal SolutionConfigurationInSolution() { } 424 public string ConfigurationName { get { throw null; } } 425 public string FullName { get { throw null; } } 426 public string PlatformName { get { throw null; } } 427 } 428 public sealed partial class SolutionFile 429 { SolutionFile()430 internal SolutionFile() { } 431 public System.Collections.Generic.IReadOnlyDictionary<string, Microsoft.Build.Construction.ProjectInSolution> ProjectsByGuid { get { throw null; } } 432 public System.Collections.Generic.IReadOnlyList<Microsoft.Build.Construction.ProjectInSolution> ProjectsInOrder { get { throw null; } } 433 public System.Collections.Generic.IReadOnlyList<Microsoft.Build.Construction.SolutionConfigurationInSolution> SolutionConfigurations { get { throw null; } } GetDefaultConfigurationName()434 public string GetDefaultConfigurationName() { throw null; } GetDefaultPlatformName()435 public string GetDefaultPlatformName() { throw null; } Parse(string solutionFile)436 public static Microsoft.Build.Construction.SolutionFile Parse(string solutionFile) { throw null; } 437 } 438 public enum SolutionProjectType 439 { 440 EtpSubProject = 5, 441 KnownToBeMSBuildFormat = 1, 442 SolutionFolder = 2, 443 Unknown = 0, 444 WebDeploymentProject = 4, 445 WebProject = 3, 446 } 447 [System.Diagnostics.DebuggerDisplayAttribute("#Parameters={Count}")] 448 public partial class UsingTaskParameterGroupElement : Microsoft.Build.Construction.ProjectElementContainer 449 { UsingTaskParameterGroupElement()450 internal UsingTaskParameterGroupElement() { } 451 public override string Condition { get { throw null; } set { } } 452 public override Microsoft.Build.Construction.ElementLocation ConditionLocation { get { throw null; } } 453 public System.Collections.Generic.ICollection<Microsoft.Build.Construction.ProjectUsingTaskParameterElement> Parameters { get { throw null; } } AddParameter(string name)454 public Microsoft.Build.Construction.ProjectUsingTaskParameterElement AddParameter(string name) { throw null; } AddParameter(string name, string output, string required, string parameterType)455 public Microsoft.Build.Construction.ProjectUsingTaskParameterElement AddParameter(string name, string output, string required, string parameterType) { throw null; } CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner)456 protected override Microsoft.Build.Construction.ProjectElement CreateNewInstance(Microsoft.Build.Construction.ProjectRootElement owner) { throw null; } 457 } 458 } 459 namespace Microsoft.Build.Evaluation 460 { 461 [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}")] 462 public partial class Project 463 { Project()464 public Project() { } Project(Microsoft.Build.Construction.ProjectRootElement xml)465 public Project(Microsoft.Build.Construction.ProjectRootElement xml) { } Project(Microsoft.Build.Construction.ProjectRootElement xml, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion)466 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)467 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)468 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(Microsoft.Build.Construction.ProjectRootElement xml, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion, string subToolsetVersion, Microsoft.Build.Evaluation.ProjectCollection projectCollection, Microsoft.Build.Evaluation.ProjectLoadSettings loadSettings)469 public Project(Microsoft.Build.Construction.ProjectRootElement xml, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion, string subToolsetVersion, Microsoft.Build.Evaluation.ProjectCollection projectCollection, Microsoft.Build.Evaluation.ProjectLoadSettings loadSettings) { } Project(Microsoft.Build.Evaluation.ProjectCollection projectCollection)470 public Project(Microsoft.Build.Evaluation.ProjectCollection projectCollection) { } Project(System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion, Microsoft.Build.Evaluation.ProjectCollection projectCollection)471 public Project(System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion, Microsoft.Build.Evaluation.ProjectCollection projectCollection) { } Project(string projectFile)472 public Project(string projectFile) { } Project(string projectFile, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion)473 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)474 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)475 public Project(string projectFile, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion, Microsoft.Build.Evaluation.ProjectCollection projectCollection, Microsoft.Build.Evaluation.ProjectLoadSettings loadSettings) { } Project(string projectFile, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion, string subToolsetVersion, Microsoft.Build.Evaluation.ProjectCollection projectCollection, Microsoft.Build.Evaluation.ProjectLoadSettings loadSettings)476 public Project(string projectFile, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion, string subToolsetVersion, Microsoft.Build.Evaluation.ProjectCollection projectCollection, Microsoft.Build.Evaluation.ProjectLoadSettings loadSettings) { } Project(System.Xml.XmlReader xmlReader)477 public Project(System.Xml.XmlReader xmlReader) { } Project(System.Xml.XmlReader xmlReader, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion)478 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)479 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)480 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) { } Project(System.Xml.XmlReader xmlReader, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion, string subToolsetVersion, Microsoft.Build.Evaluation.ProjectCollection projectCollection, Microsoft.Build.Evaluation.ProjectLoadSettings loadSettings)481 public Project(System.Xml.XmlReader xmlReader, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion, string subToolsetVersion, Microsoft.Build.Evaluation.ProjectCollection projectCollection, Microsoft.Build.Evaluation.ProjectLoadSettings loadSettings) { } 482 public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectMetadata> AllEvaluatedItemDefinitionMetadata { get { throw null; } } 483 public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectItem> AllEvaluatedItems { get { throw null; } } 484 public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectProperty> AllEvaluatedProperties { get { throw null; } } 485 public System.Collections.Generic.IDictionary<string, System.Collections.Generic.List<string>> ConditionedProperties { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 486 public string DirectoryPath { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 487 public bool DisableMarkDirty { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } 488 public int EvaluationCounter { get { throw null; } } 489 public string FullPath { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } [System.Diagnostics.DebuggerStepThroughAttribute]set { } } 490 public System.Collections.Generic.IDictionary<string, string> GlobalProperties { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 491 public System.Collections.Generic.IList<Microsoft.Build.Evaluation.ResolvedImport> Imports { get { throw null; } } 492 public System.Collections.Generic.IList<Microsoft.Build.Evaluation.ResolvedImport> ImportsIncludingDuplicates { get { throw null; } } 493 public bool IsBuildEnabled { get { throw null; } set { } } 494 public bool IsDirty { get { throw null; } } 495 public System.Collections.Generic.IDictionary<string, Microsoft.Build.Evaluation.ProjectItemDefinition> ItemDefinitions { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 496 public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectItem> Items { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 497 public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectItem> ItemsIgnoringCondition { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 498 public System.Collections.Generic.ICollection<string> ItemTypes { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 499 public Microsoft.Build.Evaluation.ProjectCollection ProjectCollection { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 500 public Microsoft.Build.Construction.ElementLocation ProjectFileLocation { get { throw null; } } 501 public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectProperty> Properties { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 502 public bool SkipEvaluation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } 503 public string SubToolsetVersion { get { throw null; } } 504 public System.Collections.Generic.IDictionary<string, Microsoft.Build.Execution.ProjectTargetInstance> Targets { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 505 public string ToolsVersion { get { throw null; } } 506 public Microsoft.Build.Construction.ProjectRootElement Xml { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } AddItem(string itemType, string unevaluatedInclude)507 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)508 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)509 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)510 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()511 public bool Build() { throw null; } Build(Microsoft.Build.Framework.ILogger logger)512 public bool Build(Microsoft.Build.Framework.ILogger logger) { throw null; } Build(System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers)513 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)514 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)515 public bool Build(string target) { throw null; } Build(string target, System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers)516 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)517 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)518 public bool Build(string[] targets) { throw null; } Build(string[] targets, System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers)519 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)520 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()521 public Microsoft.Build.Execution.ProjectInstance CreateProjectInstance() { throw null; } CreateProjectInstance(Microsoft.Build.Execution.ProjectInstanceSettings settings)522 public Microsoft.Build.Execution.ProjectInstance CreateProjectInstance(Microsoft.Build.Execution.ProjectInstanceSettings settings) { throw null; } ExpandString(string unexpandedValue)523 public string ExpandString(string unexpandedValue) { throw null; } GetEvaluatedItemIncludeEscaped(Microsoft.Build.Evaluation.ProjectItem item)524 public static string GetEvaluatedItemIncludeEscaped(Microsoft.Build.Evaluation.ProjectItem item) { throw null; } GetEvaluatedItemIncludeEscaped(Microsoft.Build.Evaluation.ProjectItemDefinition item)525 public static string GetEvaluatedItemIncludeEscaped(Microsoft.Build.Evaluation.ProjectItemDefinition item) { throw null; } GetItems(string itemType)526 public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectItem> GetItems(string itemType) { throw null; } GetItemsByEvaluatedInclude(string evaluatedInclude)527 public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectItem> GetItemsByEvaluatedInclude(string evaluatedInclude) { throw null; } GetItemsIgnoringCondition(string itemType)528 public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectItem> GetItemsIgnoringCondition(string itemType) { throw null; } GetLogicalProject()529 public System.Collections.Generic.IEnumerable<Microsoft.Build.Construction.ProjectElement> GetLogicalProject() { throw null; } GetMetadataValueEscaped(Microsoft.Build.Evaluation.ProjectItem item, string name)530 public static string GetMetadataValueEscaped(Microsoft.Build.Evaluation.ProjectItem item, string name) { throw null; } GetMetadataValueEscaped(Microsoft.Build.Evaluation.ProjectItemDefinition item, string name)531 public static string GetMetadataValueEscaped(Microsoft.Build.Evaluation.ProjectItemDefinition item, string name) { throw null; } GetMetadataValueEscaped(Microsoft.Build.Evaluation.ProjectMetadata metadatum)532 public static string GetMetadataValueEscaped(Microsoft.Build.Evaluation.ProjectMetadata metadatum) { throw null; } 533 [System.Diagnostics.DebuggerStepThroughAttribute] GetProperty(string name)534 public Microsoft.Build.Evaluation.ProjectProperty GetProperty(string name) { throw null; } GetPropertyValue(string name)535 public string GetPropertyValue(string name) { throw null; } GetPropertyValueEscaped(Microsoft.Build.Evaluation.ProjectProperty property)536 public static string GetPropertyValueEscaped(Microsoft.Build.Evaluation.ProjectProperty property) { throw null; } MarkDirty()537 public void MarkDirty() { } ReevaluateIfNecessary()538 public void ReevaluateIfNecessary() { } RemoveGlobalProperty(string name)539 public bool RemoveGlobalProperty(string name) { throw null; } RemoveItem(Microsoft.Build.Evaluation.ProjectItem item)540 public bool RemoveItem(Microsoft.Build.Evaluation.ProjectItem item) { throw null; } RemoveItems(System.Collections.Generic.IEnumerable<Microsoft.Build.Evaluation.ProjectItem> items)541 public void RemoveItems(System.Collections.Generic.IEnumerable<Microsoft.Build.Evaluation.ProjectItem> items) { } RemoveProperty(Microsoft.Build.Evaluation.ProjectProperty property)542 public bool RemoveProperty(Microsoft.Build.Evaluation.ProjectProperty property) { throw null; } Save()543 public void Save() { } Save(System.IO.TextWriter writer)544 public void Save(System.IO.TextWriter writer) { } Save(string path)545 public void Save(string path) { } Save(string path, System.Text.Encoding encoding)546 public void Save(string path, System.Text.Encoding encoding) { } Save(System.Text.Encoding encoding)547 public void Save(System.Text.Encoding encoding) { } SaveLogicalProject(System.IO.TextWriter writer)548 public void SaveLogicalProject(System.IO.TextWriter writer) { } SetGlobalProperty(string name, string escapedValue)549 public bool SetGlobalProperty(string name, string escapedValue) { throw null; } SetProperty(string name, string unevaluatedValue)550 public Microsoft.Build.Evaluation.ProjectProperty SetProperty(string name, string unevaluatedValue) { throw null; } 551 } 552 public partial class ProjectChangedEventArgs : System.EventArgs 553 { ProjectChangedEventArgs()554 internal ProjectChangedEventArgs() { } 555 public Microsoft.Build.Evaluation.Project Project { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } } 556 } 557 public partial class ProjectCollection : System.IDisposable 558 { ProjectCollection()559 public ProjectCollection() { } ProjectCollection(Microsoft.Build.Evaluation.ToolsetDefinitionLocations toolsetLocations)560 public ProjectCollection(Microsoft.Build.Evaluation.ToolsetDefinitionLocations toolsetLocations) { } ProjectCollection(System.Collections.Generic.IDictionary<string, string> globalProperties)561 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)562 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)563 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) { } 564 public int Count { get { throw null; } } 565 public string DefaultToolsVersion { get { throw null; } set { } } 566 public bool DisableMarkDirty { get { throw null; } set { } } 567 public static Microsoft.Build.Evaluation.ProjectCollection GlobalProjectCollection { get { throw null; } } 568 public System.Collections.Generic.IDictionary<string, string> GlobalProperties { get { throw null; } } 569 public Microsoft.Build.Execution.HostServices HostServices { get { throw null; } set { } } 570 public bool IsBuildEnabled { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } [System.Diagnostics.DebuggerStepThroughAttribute]set { } } 571 public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.Project> LoadedProjects { get { throw null; } } 572 public System.Collections.Generic.ICollection<Microsoft.Build.Framework.ILogger> Loggers { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 573 public bool OnlyLogCriticalEvents { get { throw null; } set { } } 574 public bool SkipEvaluation { get { throw null; } set { } } 575 public Microsoft.Build.Evaluation.ToolsetDefinitionLocations ToolsetLocations { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 576 public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.Toolset> Toolsets { get { throw null; } } 577 public static System.Version Version { get { throw null; } } 578 public event Microsoft.Build.Evaluation.ProjectCollection.ProjectAddedEventHandler ProjectAdded { add { } remove { } } 579 public event System.EventHandler<Microsoft.Build.Evaluation.ProjectChangedEventArgs> ProjectChanged { add { } remove { } } 580 public event System.EventHandler<Microsoft.Build.Evaluation.ProjectCollectionChangedEventArgs> ProjectCollectionChanged { add { } remove { } } 581 public event System.EventHandler<Microsoft.Build.Evaluation.ProjectXmlChangedEventArgs> ProjectXmlChanged { add { } remove { } } AddToolset(Microsoft.Build.Evaluation.Toolset toolset)582 public void AddToolset(Microsoft.Build.Evaluation.Toolset toolset) { } ContainsToolset(string toolsVersion)583 public bool ContainsToolset(string toolsVersion) { throw null; } Dispose()584 public void Dispose() { } Dispose(bool disposing)585 protected virtual void Dispose(bool disposing) { } Escape(string unescapedString)586 public static string Escape(string unescapedString) { throw null; } GetEffectiveToolsVersion(string explicitToolsVersion, string toolsVersionFromProject)587 public string GetEffectiveToolsVersion(string explicitToolsVersion, string toolsVersionFromProject) { throw null; } GetGlobalProperty(string name)588 public Microsoft.Build.Execution.ProjectPropertyInstance GetGlobalProperty(string name) { throw null; } GetLoadedProjects(string fullPath)589 public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.Project> GetLoadedProjects(string fullPath) { throw null; } GetToolset(string toolsVersion)590 public Microsoft.Build.Evaluation.Toolset GetToolset(string toolsVersion) { throw null; } LoadProject(string fileName)591 public Microsoft.Build.Evaluation.Project LoadProject(string fileName) { throw null; } LoadProject(string fileName, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion)592 public Microsoft.Build.Evaluation.Project LoadProject(string fileName, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion) { throw null; } LoadProject(string fileName, string toolsVersion)593 public Microsoft.Build.Evaluation.Project LoadProject(string fileName, string toolsVersion) { throw null; } LoadProject(System.Xml.XmlReader xmlReader)594 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)595 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)596 public Microsoft.Build.Evaluation.Project LoadProject(System.Xml.XmlReader xmlReader, string toolsVersion) { throw null; } RegisterForwardingLoggers(System.Collections.Generic.IEnumerable<Microsoft.Build.Logging.ForwardingLoggerRecord> remoteLoggers)597 public void RegisterForwardingLoggers(System.Collections.Generic.IEnumerable<Microsoft.Build.Logging.ForwardingLoggerRecord> remoteLoggers) { } RegisterLogger(Microsoft.Build.Framework.ILogger logger)598 public void RegisterLogger(Microsoft.Build.Framework.ILogger logger) { } RegisterLoggers(System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers)599 public void RegisterLoggers(System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers) { } RemoveAllToolsets()600 public void RemoveAllToolsets() { } RemoveGlobalProperty(string name)601 public bool RemoveGlobalProperty(string name) { throw null; } RemoveToolset(string toolsVersion)602 public bool RemoveToolset(string toolsVersion) { throw null; } SetGlobalProperty(string name, string value)603 public void SetGlobalProperty(string name, string value) { } TryUnloadProject(Microsoft.Build.Construction.ProjectRootElement projectRootElement)604 public bool TryUnloadProject(Microsoft.Build.Construction.ProjectRootElement projectRootElement) { throw null; } Unescape(string escapedString)605 public static string Unescape(string escapedString) { throw null; } UnloadAllProjects()606 public void UnloadAllProjects() { } UnloadProject(Microsoft.Build.Construction.ProjectRootElement projectRootElement)607 public void UnloadProject(Microsoft.Build.Construction.ProjectRootElement projectRootElement) { } UnloadProject(Microsoft.Build.Evaluation.Project project)608 public void UnloadProject(Microsoft.Build.Evaluation.Project project) { } UnregisterAllLoggers()609 public void UnregisterAllLoggers() { } ProjectAddedEventHandler(object sender, Microsoft.Build.Evaluation.ProjectCollection.ProjectAddedToProjectCollectionEventArgs e)610 public delegate void ProjectAddedEventHandler(object sender, Microsoft.Build.Evaluation.ProjectCollection.ProjectAddedToProjectCollectionEventArgs e); 611 public partial class ProjectAddedToProjectCollectionEventArgs : System.EventArgs 612 { ProjectAddedToProjectCollectionEventArgs(Microsoft.Build.Construction.ProjectRootElement element)613 public ProjectAddedToProjectCollectionEventArgs(Microsoft.Build.Construction.ProjectRootElement element) { } 614 public Microsoft.Build.Construction.ProjectRootElement ProjectRootElement { get { throw null; } } 615 } 616 } 617 public partial class ProjectCollectionChangedEventArgs : System.EventArgs 618 { ProjectCollectionChangedEventArgs()619 internal ProjectCollectionChangedEventArgs() { } 620 public Microsoft.Build.Evaluation.ProjectCollectionChangedState Changed { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } } 621 } 622 public enum ProjectCollectionChangedState 623 { 624 DefaultToolsVersion = 0, 625 DisableMarkDirty = 7, 626 GlobalProperties = 3, 627 HostServices = 6, 628 IsBuildEnabled = 4, 629 Loggers = 2, 630 OnlyLogCriticalEvents = 5, 631 SkipEvaluation = 8, 632 Toolsets = 1, 633 } 634 [System.Diagnostics.DebuggerDisplayAttribute("{ItemType}={EvaluatedInclude} [{UnevaluatedInclude}] #DirectMetadata={DirectMetadataCount}")] 635 public partial class ProjectItem 636 { ProjectItem()637 internal ProjectItem() { } 638 public System.Collections.Generic.IEnumerable<Microsoft.Build.Evaluation.ProjectMetadata> DirectMetadata { get { throw null; } } 639 public int DirectMetadataCount { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 640 public string EvaluatedInclude { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 641 public bool IsImported { get { throw null; } } 642 public string ItemType { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } set { } } 643 public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.ProjectMetadata> Metadata { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 644 public int MetadataCount { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 645 [System.Diagnostics.DebuggerBrowsableAttribute((System.Diagnostics.DebuggerBrowsableState)(0))] 646 public Microsoft.Build.Evaluation.Project Project { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 647 public string UnevaluatedInclude { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } set { } } 648 [System.Diagnostics.DebuggerBrowsableAttribute((System.Diagnostics.DebuggerBrowsableState)(0))] 649 public Microsoft.Build.Construction.ProjectItemElement Xml { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } GetMetadata(string name)650 public Microsoft.Build.Evaluation.ProjectMetadata GetMetadata(string name) { throw null; } GetMetadataValue(string name)651 public string GetMetadataValue(string name) { throw null; } HasMetadata(string name)652 public bool HasMetadata(string name) { throw null; } RemoveMetadata(string name)653 public bool RemoveMetadata(string name) { throw null; } Rename(string name)654 public void Rename(string name) { } SetMetadataValue(string name, string unevaluatedValue)655 public Microsoft.Build.Evaluation.ProjectMetadata SetMetadataValue(string name, string unevaluatedValue) { throw null; } 656 } 657 [System.Diagnostics.DebuggerDisplayAttribute("{itemType} #Metadata={MetadataCount}")] 658 public partial class ProjectItemDefinition 659 { ProjectItemDefinition()660 internal ProjectItemDefinition() { } 661 [System.Diagnostics.DebuggerBrowsableAttribute((System.Diagnostics.DebuggerBrowsableState)(0))] 662 public string ItemType { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 663 public System.Collections.Generic.IEnumerable<Microsoft.Build.Evaluation.ProjectMetadata> Metadata { get { throw null; } } 664 public int MetadataCount { get { throw null; } } 665 [System.Diagnostics.DebuggerBrowsableAttribute((System.Diagnostics.DebuggerBrowsableState)(0))] 666 public Microsoft.Build.Evaluation.Project Project { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 667 [System.Diagnostics.DebuggerStepThroughAttribute] GetMetadata(string name)668 public Microsoft.Build.Evaluation.ProjectMetadata GetMetadata(string name) { throw null; } GetMetadataValue(string name)669 public string GetMetadataValue(string name) { throw null; } SetMetadataValue(string name, string unevaluatedValue)670 public Microsoft.Build.Evaluation.ProjectMetadata SetMetadataValue(string name, string unevaluatedValue) { throw null; } 671 } 672 [System.FlagsAttribute] 673 public enum ProjectLoadSettings 674 { 675 Default = 0, 676 IgnoreMissingImports = 1, 677 RecordDuplicateButNotCircularImports = 2, 678 RejectCircularImports = 4, 679 } 680 [System.Diagnostics.DebuggerDisplayAttribute("{Name}={EvaluatedValue} [{xml.Value}]")] 681 public partial class ProjectMetadata : System.IEquatable<Microsoft.Build.Evaluation.ProjectMetadata> 682 { ProjectMetadata()683 internal ProjectMetadata() { } 684 public Microsoft.Build.Construction.ElementLocation ConditionLocation { get { throw null; } } 685 public string EvaluatedValue { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 686 public bool IsImported { get { throw null; } } 687 public string ItemType { get { throw null; } } 688 public Microsoft.Build.Construction.ElementLocation Location { get { throw null; } } 689 public string Name { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 690 public Microsoft.Build.Evaluation.ProjectMetadata Predecessor { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 691 public Microsoft.Build.Evaluation.Project Project { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 692 public string UnevaluatedValue { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } [System.Diagnostics.DebuggerStepThroughAttribute]set { } } 693 [System.Diagnostics.DebuggerBrowsableAttribute((System.Diagnostics.DebuggerBrowsableState)(0))] 694 public Microsoft.Build.Construction.ProjectMetadataElement Xml { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } Equals(Microsoft.Build.Evaluation.ProjectMetadata other)695 bool System.IEquatable<Microsoft.Build.Evaluation.ProjectMetadata>.Equals(Microsoft.Build.Evaluation.ProjectMetadata other) { throw null; } 696 } 697 [System.Diagnostics.DebuggerDisplayAttribute("{Name}={EvaluatedValue} [{UnevaluatedValue}]")] 698 public abstract partial class ProjectProperty : System.IEquatable<Microsoft.Build.Evaluation.ProjectProperty> 699 { ProjectProperty()700 internal ProjectProperty() { } 701 public string EvaluatedValue { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 702 public abstract bool IsEnvironmentProperty { [System.Diagnostics.DebuggerStepThroughAttribute]get; } 703 public abstract bool IsGlobalProperty { [System.Diagnostics.DebuggerStepThroughAttribute]get; } 704 public abstract bool IsImported { get; } 705 public abstract bool IsReservedProperty { [System.Diagnostics.DebuggerStepThroughAttribute]get; } 706 [System.Diagnostics.DebuggerBrowsableAttribute((System.Diagnostics.DebuggerBrowsableState)(0))] 707 public abstract string Name { [System.Diagnostics.DebuggerStepThroughAttribute]get; } 708 public abstract Microsoft.Build.Evaluation.ProjectProperty Predecessor { [System.Diagnostics.DebuggerStepThroughAttribute]get; } 709 [System.Diagnostics.DebuggerBrowsableAttribute((System.Diagnostics.DebuggerBrowsableState)(0))] 710 public Microsoft.Build.Evaluation.Project Project { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 711 public abstract string UnevaluatedValue { [System.Diagnostics.DebuggerStepThroughAttribute]get; set; } 712 [System.Diagnostics.DebuggerBrowsableAttribute((System.Diagnostics.DebuggerBrowsableState)(0))] 713 public abstract Microsoft.Build.Construction.ProjectPropertyElement Xml { [System.Diagnostics.DebuggerStepThroughAttribute]get; } Equals(Microsoft.Build.Evaluation.ProjectProperty other)714 bool System.IEquatable<Microsoft.Build.Evaluation.ProjectProperty>.Equals(Microsoft.Build.Evaluation.ProjectProperty other) { throw null; } 715 } 716 public partial class ProjectXmlChangedEventArgs : System.EventArgs 717 { ProjectXmlChangedEventArgs()718 internal ProjectXmlChangedEventArgs() { } 719 public Microsoft.Build.Construction.ProjectRootElement ProjectXml { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } } 720 public string Reason { get { throw null; } } 721 } 722 [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] 723 public partial struct ResolvedImport 724 { 725 public Microsoft.Build.Construction.ProjectRootElement ImportedProject { get { throw null; } } 726 public Microsoft.Build.Construction.ProjectImportElement ImportingElement { get { throw null; } } 727 public bool IsImported { get { throw null; } } 728 } 729 [System.Diagnostics.DebuggerDisplayAttribute("SubToolsetVersion={SubToolsetVersion} #Properties={properties.Count}")] 730 public partial class SubToolset 731 { SubToolset()732 internal SubToolset() { } 733 public System.Collections.Generic.IDictionary<string, Microsoft.Build.Execution.ProjectPropertyInstance> Properties { get { throw null; } } 734 public string SubToolsetVersion { get { throw null; } } 735 } 736 [System.Diagnostics.DebuggerDisplayAttribute("ToolsVersion={ToolsVersion} ToolsPath={ToolsPath} #Properties={properties.Count}")] 737 public partial class Toolset 738 { Toolset(string toolsVersion, string toolsPath, Microsoft.Build.Evaluation.ProjectCollection projectCollection, string msbuildOverrideTasksPath)739 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)740 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)741 public Toolset(string toolsVersion, string toolsPath, System.Collections.Generic.IDictionary<string, string> buildProperties, Microsoft.Build.Evaluation.ProjectCollection projectCollection, string msbuildOverrideTasksPath) { } 742 public string DefaultSubToolsetVersion { get { throw null; } } 743 public System.Collections.Generic.IDictionary<string, Microsoft.Build.Execution.ProjectPropertyInstance> Properties { get { throw null; } } 744 public System.Collections.Generic.IDictionary<string, Microsoft.Build.Evaluation.SubToolset> SubToolsets { get { throw null; } } 745 public string ToolsPath { get { throw null; } } 746 public string ToolsVersion { get { throw null; } } GenerateSubToolsetVersion()747 public string GenerateSubToolsetVersion() { throw null; } GenerateSubToolsetVersion(System.Collections.Generic.IDictionary<string, string> overrideGlobalProperties, int solutionVersion)748 public string GenerateSubToolsetVersion(System.Collections.Generic.IDictionary<string, string> overrideGlobalProperties, int solutionVersion) { throw null; } GetProperty(string propertyName, string subToolsetVersion)749 public Microsoft.Build.Execution.ProjectPropertyInstance GetProperty(string propertyName, string subToolsetVersion) { throw null; } 750 } 751 [System.FlagsAttribute] 752 public enum ToolsetDefinitionLocations 753 { 754 ConfigurationFile = 1, 755 None = 0, 756 Registry = 2, 757 } 758 } 759 namespace Microsoft.Build.Exceptions 760 { 761 public partial class BuildAbortedException : System.Exception 762 { BuildAbortedException()763 public BuildAbortedException() { } 764 #if !NETSTANDARD BuildAbortedException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)765 protected BuildAbortedException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } 766 #endif BuildAbortedException(string message)767 public BuildAbortedException(string message) { } BuildAbortedException(string message, System.Exception innerException)768 public BuildAbortedException(string message, System.Exception innerException) { } 769 public string ErrorCode { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } } 770 #if !NETSTANDARD 771 [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter=true)] GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)772 public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } 773 #endif 774 } 775 public sealed partial class InternalLoggerException : System.Exception 776 { InternalLoggerException()777 public InternalLoggerException() { } InternalLoggerException(string message)778 public InternalLoggerException(string message) { } InternalLoggerException(string message, System.Exception innerException)779 public InternalLoggerException(string message, System.Exception innerException) { } 780 public Microsoft.Build.Framework.BuildEventArgs BuildEventArgs { get { throw null; } } 781 public string ErrorCode { get { throw null; } } 782 public string HelpKeyword { get { throw null; } } 783 public bool InitializationException { get { throw null; } } 784 #if !NETSTANDARD 785 [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter=true)] GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)786 public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } 787 #endif 788 } 789 public sealed partial class InvalidProjectFileException : System.Exception 790 { InvalidProjectFileException()791 public InvalidProjectFileException() { } InvalidProjectFileException(string message)792 public InvalidProjectFileException(string message) { } InvalidProjectFileException(string message, System.Exception innerException)793 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)794 public InvalidProjectFileException(string projectFile, int lineNumber, int columnNumber, int endLineNumber, int endColumnNumber, string message, string errorSubcategory, string errorCode, string helpKeyword) { } 795 public string BaseMessage { get { throw null; } } 796 public int ColumnNumber { get { throw null; } } 797 public int EndColumnNumber { get { throw null; } } 798 public int EndLineNumber { get { throw null; } } 799 public string ErrorCode { get { throw null; } } 800 public string ErrorSubcategory { get { throw null; } } 801 public bool HasBeenLogged { get { throw null; } } 802 public string HelpKeyword { get { throw null; } } 803 public int LineNumber { get { throw null; } } 804 public override string Message { get { throw null; } } 805 public string ProjectFile { get { throw null; } } 806 #if !NETSTANDARD 807 [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter=true)] GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)808 public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } 809 #endif 810 } 811 public partial class InvalidToolsetDefinitionException : System.Exception 812 { InvalidToolsetDefinitionException()813 public InvalidToolsetDefinitionException() { } 814 #if !NETSTANDARD InvalidToolsetDefinitionException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)815 protected InvalidToolsetDefinitionException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } 816 #endif InvalidToolsetDefinitionException(string message)817 public InvalidToolsetDefinitionException(string message) { } InvalidToolsetDefinitionException(string message, System.Exception innerException)818 public InvalidToolsetDefinitionException(string message, System.Exception innerException) { } InvalidToolsetDefinitionException(string message, string errorCode)819 public InvalidToolsetDefinitionException(string message, string errorCode) { } InvalidToolsetDefinitionException(string message, string errorCode, System.Exception innerException)820 public InvalidToolsetDefinitionException(string message, string errorCode, System.Exception innerException) { } 821 public string ErrorCode { get { throw null; } } 822 #if !NETSTANDARD 823 [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter=true)] GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)824 public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } 825 #endif 826 } 827 } 828 namespace Microsoft.Build.Execution 829 { 830 public partial class BuildManager : System.IDisposable 831 { BuildManager()832 public BuildManager() { } BuildManager(string hostName)833 public BuildManager(string hostName) { } 834 public static Microsoft.Build.Execution.BuildManager DefaultBuildManager { get { throw null; } } BeginBuild(Microsoft.Build.Execution.BuildParameters parameters)835 public void BeginBuild(Microsoft.Build.Execution.BuildParameters parameters) { } Build(Microsoft.Build.Execution.BuildParameters parameters, Microsoft.Build.Execution.BuildRequestData requestData)836 public Microsoft.Build.Execution.BuildResult Build(Microsoft.Build.Execution.BuildParameters parameters, Microsoft.Build.Execution.BuildRequestData requestData) { throw null; } BuildRequest(Microsoft.Build.Execution.BuildRequestData requestData)837 public Microsoft.Build.Execution.BuildResult BuildRequest(Microsoft.Build.Execution.BuildRequestData requestData) { throw null; } CancelAllSubmissions()838 public void CancelAllSubmissions() { } Dispose()839 public void Dispose() { } EndBuild()840 public void EndBuild() { } ~BuildManager()841 ~BuildManager() { } GetProjectInstanceForBuild(Microsoft.Build.Evaluation.Project project)842 public Microsoft.Build.Execution.ProjectInstance GetProjectInstanceForBuild(Microsoft.Build.Evaluation.Project project) { throw null; } PendBuildRequest(Microsoft.Build.Execution.BuildRequestData requestData)843 public Microsoft.Build.Execution.BuildSubmission PendBuildRequest(Microsoft.Build.Execution.BuildRequestData requestData) { throw null; } ResetCaches()844 public void ResetCaches() { } ShutdownAllNodes()845 public void ShutdownAllNodes() { } 846 } 847 public partial class BuildParameters 848 { BuildParameters()849 public BuildParameters() { } BuildParameters(Microsoft.Build.Evaluation.ProjectCollection projectCollection)850 public BuildParameters(Microsoft.Build.Evaluation.ProjectCollection projectCollection) { } 851 public System.Collections.Generic.IDictionary<string, string> BuildProcessEnvironment { get { throw null; } } 852 #if !NETSTANDARD 853 public System.Threading.ThreadPriority BuildThreadPriority { get { throw null; } set { } } 854 #endif 855 public System.Globalization.CultureInfo Culture { get { throw null; } set { } } 856 public string DefaultToolsVersion { get { throw null; } set { } } 857 public bool DetailedSummary { get { throw null; } set { } } 858 public bool DisableInProcNode { get { throw null; } set { } } 859 public bool EnableNodeReuse { get { throw null; } set { } } 860 public System.Collections.Generic.IDictionary<string, string> EnvironmentProperties { get { throw null; } } 861 public System.Collections.Generic.IEnumerable<Microsoft.Build.Logging.ForwardingLoggerRecord> ForwardingLoggers { get { throw null; } set { } } 862 public System.Collections.Generic.IDictionary<string, string> GlobalProperties { get { throw null; } set { } } 863 public Microsoft.Build.Execution.HostServices HostServices { get { throw null; } set { } } 864 public bool LegacyThreadingSemantics { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } 865 public System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> Loggers { get { throw null; } set { } } 866 public bool LogInitialPropertiesAndItems { get { throw null; } set { } } 867 public bool LogTaskInputs { get { throw null; } set { } } 868 public int MaxNodeCount { get { throw null; } set { } } 869 public int MemoryUseLimit { get { throw null; } set { } } 870 public string NodeExeLocation { get { throw null; } set { } } 871 public bool OnlyLogCriticalEvents { get { throw null; } set { } } 872 public bool ResetCaches { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } 873 public bool SaveOperatingEnvironment { get { throw null; } set { } } 874 public bool ShutdownInProcNodeOnBuildFinish { get { throw null; } set { } } 875 public Microsoft.Build.Evaluation.ToolsetDefinitionLocations ToolsetDefinitionLocations { get { throw null; } set { } } 876 public System.Collections.Generic.ICollection<Microsoft.Build.Evaluation.Toolset> Toolsets { get { throw null; } } 877 public System.Globalization.CultureInfo UICulture { get { throw null; } set { } } 878 public bool UseSynchronousLogging { get { throw null; } set { } } Clone()879 public Microsoft.Build.Execution.BuildParameters Clone() { throw null; } GetToolset(string toolsVersion)880 public Microsoft.Build.Evaluation.Toolset GetToolset(string toolsVersion) { throw null; } 881 } 882 public partial class BuildRequestData 883 { BuildRequestData(Microsoft.Build.Execution.ProjectInstance projectInstance, string[] targetsToBuild)884 public BuildRequestData(Microsoft.Build.Execution.ProjectInstance projectInstance, string[] targetsToBuild) { } BuildRequestData(Microsoft.Build.Execution.ProjectInstance projectInstance, string[] targetsToBuild, Microsoft.Build.Execution.HostServices hostServices)885 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)886 public BuildRequestData(Microsoft.Build.Execution.ProjectInstance projectInstance, string[] targetsToBuild, Microsoft.Build.Execution.HostServices hostServices, Microsoft.Build.Execution.BuildRequestDataFlags flags) { } BuildRequestData(Microsoft.Build.Execution.ProjectInstance projectInstance, string[] targetsToBuild, Microsoft.Build.Execution.HostServices hostServices, Microsoft.Build.Execution.BuildRequestDataFlags flags, System.Collections.Generic.IEnumerable<string> propertiesToTransfer)887 public BuildRequestData(Microsoft.Build.Execution.ProjectInstance projectInstance, string[] targetsToBuild, Microsoft.Build.Execution.HostServices hostServices, Microsoft.Build.Execution.BuildRequestDataFlags flags, System.Collections.Generic.IEnumerable<string> propertiesToTransfer) { } BuildRequestData(string projectFullPath, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion, string[] targetsToBuild, Microsoft.Build.Execution.HostServices hostServices)888 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)889 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) { } 890 public string ExplicitlySpecifiedToolsVersion { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } } 891 public Microsoft.Build.Execution.BuildRequestDataFlags Flags { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } } 892 public System.Collections.Generic.ICollection<Microsoft.Build.Execution.ProjectPropertyInstance> GlobalProperties { get { throw null; } } 893 public Microsoft.Build.Execution.HostServices HostServices { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } } 894 public string ProjectFullPath { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } } 895 public Microsoft.Build.Execution.ProjectInstance ProjectInstance { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } } 896 public System.Collections.Generic.IEnumerable<string> PropertiesToTransfer { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } } 897 public System.Collections.Generic.ICollection<string> TargetNames { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } } 898 } 899 [System.FlagsAttribute] 900 public enum BuildRequestDataFlags 901 { 902 IgnoreExistingProjectState = 4, 903 None = 0, 904 ProvideProjectStateAfterBuild = 2, 905 ReplaceExistingProjectInstance = 1, 906 } 907 public partial class BuildResult 908 { BuildResult()909 public BuildResult() { } 910 public bool CircularDependency { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 911 public int ConfigurationId { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 912 public System.Exception Exception { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 913 public int GlobalRequestId { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 914 public Microsoft.Build.Execution.ITargetResult this[string target] { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 915 public int NodeRequestId { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 916 public Microsoft.Build.Execution.BuildResultCode OverallResult { get { throw null; } } 917 public int ParentGlobalRequestId { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 918 public Microsoft.Build.Execution.ProjectInstance ProjectStateAfterBuild { get { throw null; } set { } } 919 public System.Collections.Generic.IDictionary<string, Microsoft.Build.Execution.TargetResult> ResultsByTarget { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 920 public int SubmissionId { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } AddResultsForTarget(string target, Microsoft.Build.Execution.TargetResult result)921 public void AddResultsForTarget(string target, Microsoft.Build.Execution.TargetResult result) { } HasResultsForTarget(string target)922 public bool HasResultsForTarget(string target) { throw null; } MergeResults(Microsoft.Build.Execution.BuildResult results)923 public void MergeResults(Microsoft.Build.Execution.BuildResult results) { } 924 } 925 public enum BuildResultCode 926 { 927 Failure = 1, 928 Success = 0, 929 } 930 public partial class BuildSubmission 931 { BuildSubmission()932 internal BuildSubmission() { } 933 public object AsyncContext { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } } 934 public Microsoft.Build.Execution.BuildManager BuildManager { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } } 935 public Microsoft.Build.Execution.BuildResult BuildResult { get { throw null; } set { } } 936 public bool IsCompleted { get { throw null; } } 937 public int SubmissionId { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } } 938 public System.Threading.WaitHandle WaitHandle { get { throw null; } } Execute()939 public Microsoft.Build.Execution.BuildResult Execute() { throw null; } ExecuteAsync(Microsoft.Build.Execution.BuildSubmissionCompleteCallback callback, object context)940 public void ExecuteAsync(Microsoft.Build.Execution.BuildSubmissionCompleteCallback callback, object context) { } 941 } BuildSubmissionCompleteCallback(Microsoft.Build.Execution.BuildSubmission submission)942 public delegate void BuildSubmissionCompleteCallback(Microsoft.Build.Execution.BuildSubmission submission); 943 [System.Diagnostics.DebuggerDisplayAttribute("#Entries={hostObjectMap.Count}")] 944 public partial class HostServices 945 { HostServices()946 public HostServices() { } GetHostObject(string projectFile, string targetName, string taskName)947 public Microsoft.Build.Framework.ITaskHost GetHostObject(string projectFile, string targetName, string taskName) { throw null; } GetNodeAffinity(string projectFile)948 public Microsoft.Build.Execution.NodeAffinity GetNodeAffinity(string projectFile) { throw null; } OnRenameProject(string oldFullPath, string newFullPath)949 public void OnRenameProject(string oldFullPath, string newFullPath) { } RegisterHostObject(string projectFile, string targetName, string taskName, Microsoft.Build.Framework.ITaskHost hostObject)950 public void RegisterHostObject(string projectFile, string targetName, string taskName, Microsoft.Build.Framework.ITaskHost hostObject) { } SetNodeAffinity(string projectFile, Microsoft.Build.Execution.NodeAffinity nodeAffinity)951 public void SetNodeAffinity(string projectFile, Microsoft.Build.Execution.NodeAffinity nodeAffinity) { } UnregisterProject(string projectFullPath)952 public void UnregisterProject(string projectFullPath) { } 953 } 954 public partial interface ITargetResult 955 { 956 System.Exception Exception { get; } 957 Microsoft.Build.Framework.ITaskItem[] Items { get; } 958 Microsoft.Build.Execution.TargetResultCode ResultCode { get; } 959 } 960 public enum NodeAffinity 961 { 962 Any = 2, 963 InProc = 0, 964 OutOfProc = 1, 965 } 966 public enum NodeEngineShutdownReason 967 { 968 BuildComplete = 0, 969 BuildCompleteReuse = 1, 970 ConnectionFailed = 2, 971 Error = 3, 972 } 973 public partial class OutOfProcNode 974 { OutOfProcNode()975 public OutOfProcNode() { } Run(bool enableReuse, out System.Exception shutdownException)976 public Microsoft.Build.Execution.NodeEngineShutdownReason Run(bool enableReuse, out System.Exception shutdownException) { shutdownException = default(System.Exception); throw null; } Run(out System.Exception shutdownException)977 public Microsoft.Build.Execution.NodeEngineShutdownReason Run(out System.Exception shutdownException) { shutdownException = default(System.Exception); throw null; } 978 } 979 [System.Diagnostics.DebuggerDisplayAttribute("{FullPath} #Targets={TargetsCount} DefaultTargets={(DefaultTargets == null) ? System.String.Empty : System.String.Join(\";\", DefaultTargets.ToArray())} ToolsVersion={Toolset.ToolsVersion} InitialTargets={(InitialTargets == null) ? System.String.Empty : System.String.Join(\";\", InitialTargets.ToArray())} #GlobalProperties={globalProperties.Count} #Properties={properties.Count} #ItemTypes={items.ItemTypes.Count} #Items={items.Count}")] 980 public partial class ProjectInstance 981 { ProjectInstance(Microsoft.Build.Construction.ProjectRootElement xml)982 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)983 public ProjectInstance(Microsoft.Build.Construction.ProjectRootElement xml, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion, Microsoft.Build.Evaluation.ProjectCollection projectCollection) { } ProjectInstance(Microsoft.Build.Construction.ProjectRootElement xml, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion, string subToolsetVersion, Microsoft.Build.Evaluation.ProjectCollection projectCollection)984 public ProjectInstance(Microsoft.Build.Construction.ProjectRootElement xml, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion, string subToolsetVersion, Microsoft.Build.Evaluation.ProjectCollection projectCollection) { } ProjectInstance(string projectFile)985 public ProjectInstance(string projectFile) { } ProjectInstance(string projectFile, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion)986 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)987 public ProjectInstance(string projectFile, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion, Microsoft.Build.Evaluation.ProjectCollection projectCollection) { } ProjectInstance(string projectFile, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion, string subToolsetVersion, Microsoft.Build.Evaluation.ProjectCollection projectCollection)988 public ProjectInstance(string projectFile, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion, string subToolsetVersion, Microsoft.Build.Evaluation.ProjectCollection projectCollection) { } 989 public System.Collections.Generic.List<string> DefaultTargets { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } } 990 public string Directory { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 991 public string FullPath { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 992 public System.Collections.Generic.IDictionary<string, string> GlobalProperties { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 993 public System.Collections.Generic.List<string> InitialTargets { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } } 994 public bool IsImmutable { get { throw null; } } 995 public System.Collections.Generic.IDictionary<string, Microsoft.Build.Execution.ProjectItemDefinitionInstance> ItemDefinitions { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 996 public System.Collections.Generic.ICollection<Microsoft.Build.Execution.ProjectItemInstance> Items { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 997 public System.Collections.Generic.ICollection<string> ItemTypes { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 998 public Microsoft.Build.Construction.ElementLocation ProjectFileLocation { get { throw null; } } 999 public System.Collections.Generic.ICollection<Microsoft.Build.Execution.ProjectPropertyInstance> Properties { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 1000 public System.Collections.Generic.IDictionary<string, Microsoft.Build.Execution.ProjectTargetInstance> Targets { [System.Diagnostics.DebuggerStepThroughAttribute]get { throw null; } } 1001 public string ToolsVersion { get { throw null; } } AddItem(string itemType, string evaluatedInclude)1002 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)1003 public Microsoft.Build.Execution.ProjectItemInstance AddItem(string itemType, string evaluatedInclude, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, string>> metadata) { throw null; } Build()1004 public bool Build() { throw null; } Build(System.Collections.Generic.IEnumerable<Microsoft.Build.Framework.ILogger> loggers)1005 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)1006 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)1007 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)1008 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)1009 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)1010 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)1011 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)1012 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()1013