build/LegacyPackages/14.0/Microsoft.Build.Framework/Microsoft.Build.Framework.cs (715 lines of code) (raw):

namespace Microsoft.Build.Framework { public delegate void AnyEventHandler(object sender, Microsoft.Build.Framework.BuildEventArgs e); [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct BuildEngineResult { public BuildEngineResult(bool result, System.Collections.Generic.List<System.Collections.Generic.IDictionary<string, Microsoft.Build.Framework.ITaskItem[]>> targetOutputsPerProject) { throw null;} public bool Result { get { throw null; } } public System.Collections.Generic.IList<System.Collections.Generic.IDictionary<string, Microsoft.Build.Framework.ITaskItem[]>> TargetOutputsPerProject { get { throw null; } } } public partial class BuildErrorEventArgs : Microsoft.Build.Framework.LazyFormattedBuildEventArgs { protected BuildErrorEventArgs() { } public BuildErrorEventArgs(string subcategory, string code, string file, int lineNumber, int columnNumber, int endLineNumber, int endColumnNumber, string message, string helpKeyword, string senderName) { } public BuildErrorEventArgs(string subcategory, string code, string file, int lineNumber, int columnNumber, int endLineNumber, int endColumnNumber, string message, string helpKeyword, string senderName, System.DateTime eventTimestamp) { } public BuildErrorEventArgs(string subcategory, string code, string file, int lineNumber, int columnNumber, int endLineNumber, int endColumnNumber, string message, string helpKeyword, string senderName, System.DateTime eventTimestamp, params object[] messageArgs) { } public string Code { get { throw null; } } public int ColumnNumber { get { throw null; } } public int EndColumnNumber { get { throw null; } } public int EndLineNumber { get { throw null; } } public string File { get { throw null; } } public int LineNumber { get { throw null; } } public string ProjectFile { get { throw null; } set { } } public string Subcategory { get { throw null; } } } public delegate void BuildErrorEventHandler(object sender, Microsoft.Build.Framework.BuildErrorEventArgs e); public abstract partial class BuildEventArgs : System.EventArgs { protected BuildEventArgs() { } protected BuildEventArgs(string message, string helpKeyword, string senderName) { } protected BuildEventArgs(string message, string helpKeyword, string senderName, System.DateTime eventTimestamp) { } public Microsoft.Build.Framework.BuildEventContext BuildEventContext { get { throw null; } set { } } public string HelpKeyword { get { throw null; } } public virtual string Message { get { throw null; } protected set { } } public string SenderName { get { throw null; } } public int ThreadId { get { throw null; } } public System.DateTime Timestamp { get { throw null; } } } public partial class BuildEventContext { public const int InvalidNodeId = -2; public const int InvalidProjectContextId = -2; public const int InvalidProjectInstanceId = -1; public const int InvalidSubmissionId = -1; public const int InvalidTargetId = -1; public const int InvalidTaskId = -1; public BuildEventContext(int nodeId, int targetId, int projectContextId, int taskId) { } public BuildEventContext(int nodeId, int projectInstanceId, int projectContextId, int targetId, int taskId) { } public BuildEventContext(int submissionId, int nodeId, int projectInstanceId, int projectContextId, int targetId, int taskId) { } public long BuildRequestId { get { throw null; } } public static Microsoft.Build.Framework.BuildEventContext Invalid { get { throw null; } } public int NodeId { get { throw null; } } public int ProjectContextId { get { throw null; } } public int ProjectInstanceId { get { throw null; } } public int SubmissionId { get { throw null; } } public int TargetId { get { throw null; } } public int TaskId { get { throw null; } } public override bool Equals(object obj) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(Microsoft.Build.Framework.BuildEventContext left, Microsoft.Build.Framework.BuildEventContext right) { throw null; } public static bool operator !=(Microsoft.Build.Framework.BuildEventContext left, Microsoft.Build.Framework.BuildEventContext right) { throw null; } } public partial class BuildFinishedEventArgs : Microsoft.Build.Framework.BuildStatusEventArgs { protected BuildFinishedEventArgs() { } public BuildFinishedEventArgs(string message, string helpKeyword, bool succeeded) { } public BuildFinishedEventArgs(string message, string helpKeyword, bool succeeded, System.DateTime eventTimestamp) { } public BuildFinishedEventArgs(string message, string helpKeyword, bool succeeded, System.DateTime eventTimestamp, params object[] messageArgs) { } public bool Succeeded { get { throw null; } } } public delegate void BuildFinishedEventHandler(object sender, Microsoft.Build.Framework.BuildFinishedEventArgs e); public partial class BuildMessageEventArgs : Microsoft.Build.Framework.LazyFormattedBuildEventArgs { protected BuildMessageEventArgs() { } public BuildMessageEventArgs(string message, string helpKeyword, string senderName, Microsoft.Build.Framework.MessageImportance importance) { } public BuildMessageEventArgs(string message, string helpKeyword, string senderName, Microsoft.Build.Framework.MessageImportance importance, System.DateTime eventTimestamp) { } public BuildMessageEventArgs(string message, string helpKeyword, string senderName, Microsoft.Build.Framework.MessageImportance importance, System.DateTime eventTimestamp, params object[] messageArgs) { } public BuildMessageEventArgs(string subcategory, string code, string file, int lineNumber, int columnNumber, int endLineNumber, int endColumnNumber, string message, string helpKeyword, string senderName, Microsoft.Build.Framework.MessageImportance importance) { } public BuildMessageEventArgs(string subcategory, string code, string file, int lineNumber, int columnNumber, int endLineNumber, int endColumnNumber, string message, string helpKeyword, string senderName, Microsoft.Build.Framework.MessageImportance importance, System.DateTime eventTimestamp) { } public BuildMessageEventArgs(string subcategory, string code, string file, int lineNumber, int columnNumber, int endLineNumber, int endColumnNumber, string message, string helpKeyword, string senderName, Microsoft.Build.Framework.MessageImportance importance, System.DateTime eventTimestamp, params object[] messageArgs) { } public string Code { get { throw null; } } public int ColumnNumber { get { throw null; } } public int EndColumnNumber { get { throw null; } } public int EndLineNumber { get { throw null; } } public string File { get { throw null; } } public Microsoft.Build.Framework.MessageImportance Importance { get { throw null; } } public int LineNumber { get { throw null; } } public string ProjectFile { get { throw null; } set { } } public string Subcategory { get { throw null; } } } public delegate void BuildMessageEventHandler(object sender, Microsoft.Build.Framework.BuildMessageEventArgs e); public partial class BuildStartedEventArgs : Microsoft.Build.Framework.BuildStatusEventArgs { protected BuildStartedEventArgs() { } public BuildStartedEventArgs(string message, string helpKeyword) { } public BuildStartedEventArgs(string message, string helpKeyword, System.Collections.Generic.IDictionary<string, string> environmentOfBuild) { } public BuildStartedEventArgs(string message, string helpKeyword, System.DateTime eventTimestamp) { } public BuildStartedEventArgs(string message, string helpKeyword, System.DateTime eventTimestamp, params object[] messageArgs) { } public System.Collections.Generic.IDictionary<string, string> BuildEnvironment { get { throw null; } } } public delegate void BuildStartedEventHandler(object sender, Microsoft.Build.Framework.BuildStartedEventArgs e); public abstract partial class BuildStatusEventArgs : Microsoft.Build.Framework.LazyFormattedBuildEventArgs { protected BuildStatusEventArgs() { } protected BuildStatusEventArgs(string message, string helpKeyword, string senderName) { } protected BuildStatusEventArgs(string message, string helpKeyword, string senderName, System.DateTime eventTimestamp) { } protected BuildStatusEventArgs(string message, string helpKeyword, string senderName, System.DateTime eventTimestamp, params object[] messageArgs) { } } public delegate void BuildStatusEventHandler(object sender, Microsoft.Build.Framework.BuildStatusEventArgs e); public partial class BuildWarningEventArgs : Microsoft.Build.Framework.LazyFormattedBuildEventArgs { protected BuildWarningEventArgs() { } public BuildWarningEventArgs(string subcategory, string code, string file, int lineNumber, int columnNumber, int endLineNumber, int endColumnNumber, string message, string helpKeyword, string senderName) { } public BuildWarningEventArgs(string subcategory, string code, string file, int lineNumber, int columnNumber, int endLineNumber, int endColumnNumber, string message, string helpKeyword, string senderName, System.DateTime eventTimestamp) { } public BuildWarningEventArgs(string subcategory, string code, string file, int lineNumber, int columnNumber, int endLineNumber, int endColumnNumber, string message, string helpKeyword, string senderName, System.DateTime eventTimestamp, params object[] messageArgs) { } public string Code { get { throw null; } } public int ColumnNumber { get { throw null; } } public int EndColumnNumber { get { throw null; } } public int EndLineNumber { get { throw null; } } public string File { get { throw null; } } public int LineNumber { get { throw null; } } public string ProjectFile { get { throw null; } set { } } public string Subcategory { get { throw null; } } } public delegate void BuildWarningEventHandler(object sender, Microsoft.Build.Framework.BuildWarningEventArgs e); public partial class CriticalBuildMessageEventArgs : Microsoft.Build.Framework.BuildMessageEventArgs { protected CriticalBuildMessageEventArgs() { } public CriticalBuildMessageEventArgs(string subcategory, string code, string file, int lineNumber, int columnNumber, int endLineNumber, int endColumnNumber, string message, string helpKeyword, string senderName) { } public CriticalBuildMessageEventArgs(string subcategory, string code, string file, int lineNumber, int columnNumber, int endLineNumber, int endColumnNumber, string message, string helpKeyword, string senderName, System.DateTime eventTimestamp) { } public CriticalBuildMessageEventArgs(string subcategory, string code, string file, int lineNumber, int columnNumber, int endLineNumber, int endColumnNumber, string message, string helpKeyword, string senderName, System.DateTime eventTimestamp, params object[] messageArgs) { } } public abstract partial class CustomBuildEventArgs : Microsoft.Build.Framework.LazyFormattedBuildEventArgs { protected CustomBuildEventArgs() { } protected CustomBuildEventArgs(string message, string helpKeyword, string senderName) { } protected CustomBuildEventArgs(string message, string helpKeyword, string senderName, System.DateTime eventTimestamp) { } protected CustomBuildEventArgs(string message, string helpKeyword, string senderName, System.DateTime eventTimestamp, params object[] messageArgs) { } } public delegate void CustomBuildEventHandler(object sender, Microsoft.Build.Framework.CustomBuildEventArgs e); public partial class ExternalProjectFinishedEventArgs : Microsoft.Build.Framework.CustomBuildEventArgs { protected ExternalProjectFinishedEventArgs() { } public ExternalProjectFinishedEventArgs(string message, string helpKeyword, string senderName, string projectFile, bool succeeded) { } public ExternalProjectFinishedEventArgs(string message, string helpKeyword, string senderName, string projectFile, bool succeeded, System.DateTime eventTimestamp) { } public string ProjectFile { get { throw null; } } public bool Succeeded { get { throw null; } } } public partial class ExternalProjectStartedEventArgs : Microsoft.Build.Framework.CustomBuildEventArgs { protected ExternalProjectStartedEventArgs() { } public ExternalProjectStartedEventArgs(string message, string helpKeyword, string senderName, string projectFile, string targetNames) { } public ExternalProjectStartedEventArgs(string message, string helpKeyword, string senderName, string projectFile, string targetNames, System.DateTime eventTimestamp) { } public string ProjectFile { get { throw null; } } public string TargetNames { get { throw null; } } } public partial interface IBuildEngine { int ColumnNumberOfTaskNode { get; } bool ContinueOnError { get; } int LineNumberOfTaskNode { get; } string ProjectFileOfTaskNode { get; } bool BuildProjectFile(string projectFileName, string[] targetNames, System.Collections.IDictionary globalProperties, System.Collections.IDictionary targetOutputs); void LogCustomEvent(Microsoft.Build.Framework.CustomBuildEventArgs e); void LogErrorEvent(Microsoft.Build.Framework.BuildErrorEventArgs e); void LogMessageEvent(Microsoft.Build.Framework.BuildMessageEventArgs e); void LogWarningEvent(Microsoft.Build.Framework.BuildWarningEventArgs e); } public partial interface IBuildEngine2 : Microsoft.Build.Framework.IBuildEngine { bool IsRunningMultipleNodes { get; } bool BuildProjectFile(string projectFileName, string[] targetNames, System.Collections.IDictionary globalProperties, System.Collections.IDictionary targetOutputs, string toolsVersion); bool BuildProjectFilesInParallel(string[] projectFileNames, string[] targetNames, System.Collections.IDictionary[] globalProperties, System.Collections.IDictionary[] targetOutputsPerProject, string[] toolsVersion, bool useResultsCache, bool unloadProjectsOnCompletion); } public partial interface IBuildEngine3 : Microsoft.Build.Framework.IBuildEngine, Microsoft.Build.Framework.IBuildEngine2 { Microsoft.Build.Framework.BuildEngineResult BuildProjectFilesInParallel(string[] projectFileNames, string[] targetNames, System.Collections.IDictionary[] globalProperties, System.Collections.Generic.IList<string>[] removeGlobalProperties, string[] toolsVersion, bool returnTargetOutputs); void Reacquire(); void Yield(); } public partial interface IBuildEngine4 : Microsoft.Build.Framework.IBuildEngine, Microsoft.Build.Framework.IBuildEngine2, Microsoft.Build.Framework.IBuildEngine3 { object GetRegisteredTaskObject(object key, Microsoft.Build.Framework.RegisteredTaskObjectLifetime lifetime); void RegisterTaskObject(object key, object obj, Microsoft.Build.Framework.RegisteredTaskObjectLifetime lifetime, bool allowEarlyCollection); object UnregisterTaskObject(object key, Microsoft.Build.Framework.RegisteredTaskObjectLifetime lifetime); } public partial interface ICancelableTask : Microsoft.Build.Framework.ITask { void Cancel(); } public partial interface IEventRedirector { void ForwardEvent(Microsoft.Build.Framework.BuildEventArgs buildEvent); } public partial interface IEventSource { event Microsoft.Build.Framework.AnyEventHandler AnyEventRaised; event Microsoft.Build.Framework.BuildFinishedEventHandler BuildFinished; event Microsoft.Build.Framework.BuildStartedEventHandler BuildStarted; event Microsoft.Build.Framework.CustomBuildEventHandler CustomEventRaised; event Microsoft.Build.Framework.BuildErrorEventHandler ErrorRaised; event Microsoft.Build.Framework.BuildMessageEventHandler MessageRaised; event Microsoft.Build.Framework.ProjectFinishedEventHandler ProjectFinished; event Microsoft.Build.Framework.ProjectStartedEventHandler ProjectStarted; event Microsoft.Build.Framework.BuildStatusEventHandler StatusEventRaised; event Microsoft.Build.Framework.TargetFinishedEventHandler TargetFinished; event Microsoft.Build.Framework.TargetStartedEventHandler TargetStarted; event Microsoft.Build.Framework.TaskFinishedEventHandler TaskFinished; event Microsoft.Build.Framework.TaskStartedEventHandler TaskStarted; event Microsoft.Build.Framework.BuildWarningEventHandler WarningRaised; } public partial interface IForwardingLogger : Microsoft.Build.Framework.ILogger, Microsoft.Build.Framework.INodeLogger { Microsoft.Build.Framework.IEventRedirector BuildEventRedirector { get; set; } int NodeId { get; set; } } public partial interface IGeneratedTask : Microsoft.Build.Framework.ITask { object GetPropertyValue(Microsoft.Build.Framework.TaskPropertyInfo property); void SetPropertyValue(Microsoft.Build.Framework.TaskPropertyInfo property, object value); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface ILogger { string Parameters { get; set; } Microsoft.Build.Framework.LoggerVerbosity Verbosity { get; set; } void Initialize(Microsoft.Build.Framework.IEventSource eventSource); void Shutdown(); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface INodeLogger : Microsoft.Build.Framework.ILogger { void Initialize(Microsoft.Build.Framework.IEventSource eventSource, int nodeCount); } public partial interface ITask { Microsoft.Build.Framework.IBuildEngine BuildEngine { get; set; } Microsoft.Build.Framework.ITaskHost HostObject { get; set; } bool Execute(); } public partial interface ITaskFactory { string FactoryName { get; } System.Type TaskType { get; } void CleanupTask(Microsoft.Build.Framework.ITask task); Microsoft.Build.Framework.ITask CreateTask(Microsoft.Build.Framework.IBuildEngine taskFactoryLoggingHost); Microsoft.Build.Framework.TaskPropertyInfo[] GetTaskParameters(); bool Initialize(string taskName, System.Collections.Generic.IDictionary<string, Microsoft.Build.Framework.TaskPropertyInfo> parameterGroup, string taskBody, Microsoft.Build.Framework.IBuildEngine taskFactoryLoggingHost); } public partial interface ITaskFactory2 : Microsoft.Build.Framework.ITaskFactory { Microsoft.Build.Framework.ITask CreateTask(Microsoft.Build.Framework.IBuildEngine taskFactoryLoggingHost, System.Collections.Generic.IDictionary<string, string> taskIdentityParameters); bool Initialize(string taskName, System.Collections.Generic.IDictionary<string, string> factoryIdentityParameters, System.Collections.Generic.IDictionary<string, Microsoft.Build.Framework.TaskPropertyInfo> parameterGroup, string taskBody, Microsoft.Build.Framework.IBuildEngine taskFactoryLoggingHost); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("9049A481-D0E9-414f-8F92-D4F67A0359A6")] [System.Runtime.InteropServices.InterfaceTypeAttribute((System.Runtime.InteropServices.ComInterfaceType)(1))] public partial interface ITaskHost { } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("8661674F-2148-4F71-A92A-49875511C528")] public partial interface ITaskItem { string ItemSpec { get; set; } int MetadataCount { get; } System.Collections.ICollection MetadataNames { get; } System.Collections.IDictionary CloneCustomMetadata(); void CopyMetadataTo(Microsoft.Build.Framework.ITaskItem destinationItem); string GetMetadata(string metadataName); void RemoveMetadata(string metadataName); void SetMetadata(string metadataName, string metadataValue); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("ac6d5a59-f877-461b-88e3-b2f06fce0cb9")] public partial interface ITaskItem2 : Microsoft.Build.Framework.ITaskItem { string EvaluatedIncludeEscaped { get; set; } System.Collections.IDictionary CloneCustomMetadataEscaped(); string GetMetadataValueEscaped(string metadataName); void SetMetadataValueLiteral(string metadataName, string metadataValue); } public partial class LazyFormattedBuildEventArgs : Microsoft.Build.Framework.BuildEventArgs { protected LazyFormattedBuildEventArgs() { } public LazyFormattedBuildEventArgs(string message, string helpKeyword, string senderName) { } public LazyFormattedBuildEventArgs(string message, string helpKeyword, string senderName, System.DateTime eventTimestamp, params object[] messageArgs) { } public override string Message { get { throw null; } } } [System.AttributeUsageAttribute((System.AttributeTargets)(4), AllowMultiple=false, Inherited=true)] public sealed partial class LoadInSeparateAppDomainAttribute : System.Attribute { public LoadInSeparateAppDomainAttribute() { } } public partial class LoggerException : System.Exception { public LoggerException() { } #if !NETSTANDARD protected LoggerException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } #endif public LoggerException(string message) { } public LoggerException(string message, System.Exception innerException) { } public LoggerException(string message, System.Exception innerException, string errorCode, string helpKeyword) { } public string ErrorCode { get { throw null; } } public string HelpKeyword { get { throw null; } } #if !NETSTANDARD [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter=true)] public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } #endif } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public enum LoggerVerbosity { Detailed = 3, Diagnostic = 4, Minimal = 1, Normal = 2, Quiet = 0, } public enum MessageImportance { High = 0, Low = 2, Normal = 1, } [System.AttributeUsageAttribute((System.AttributeTargets)(128), AllowMultiple=false, Inherited=false)] public sealed partial class OutputAttribute : System.Attribute { public OutputAttribute() { } } public partial class ProjectFinishedEventArgs : Microsoft.Build.Framework.BuildStatusEventArgs { protected ProjectFinishedEventArgs() { } public ProjectFinishedEventArgs(string message, string helpKeyword, string projectFile, bool succeeded) { } public ProjectFinishedEventArgs(string message, string helpKeyword, string projectFile, bool succeeded, System.DateTime eventTimestamp) { } public string ProjectFile { get { throw null; } } public bool Succeeded { get { throw null; } } } public delegate void ProjectFinishedEventHandler(object sender, Microsoft.Build.Framework.ProjectFinishedEventArgs e); public partial class ProjectStartedEventArgs : Microsoft.Build.Framework.BuildStatusEventArgs { public const int InvalidProjectId = -1; protected ProjectStartedEventArgs() { } public ProjectStartedEventArgs(int projectId, string message, string helpKeyword, string projectFile, string targetNames, System.Collections.IEnumerable properties, System.Collections.IEnumerable items, Microsoft.Build.Framework.BuildEventContext parentBuildEventContext) { } public ProjectStartedEventArgs(int projectId, string message, string helpKeyword, string projectFile, string targetNames, System.Collections.IEnumerable properties, System.Collections.IEnumerable items, Microsoft.Build.Framework.BuildEventContext parentBuildEventContext, System.Collections.Generic.IDictionary<string, string> globalProperties, string toolsVersion) { } public ProjectStartedEventArgs(int projectId, string message, string helpKeyword, string projectFile, string targetNames, System.Collections.IEnumerable properties, System.Collections.IEnumerable items, Microsoft.Build.Framework.BuildEventContext parentBuildEventContext, System.DateTime eventTimestamp) { } public ProjectStartedEventArgs(string message, string helpKeyword, string projectFile, string targetNames, System.Collections.IEnumerable properties, System.Collections.IEnumerable items) { } public ProjectStartedEventArgs(string message, string helpKeyword, string projectFile, string targetNames, System.Collections.IEnumerable properties, System.Collections.IEnumerable items, System.DateTime eventTimestamp) { } public System.Collections.Generic.IDictionary<string, string> GlobalProperties { get { throw null; } } public System.Collections.IEnumerable Items { get { throw null; } } public Microsoft.Build.Framework.BuildEventContext ParentProjectBuildEventContext { get { throw null; } } public string ProjectFile { get { throw null; } } public int ProjectId { get { throw null; } } public System.Collections.IEnumerable Properties { get { throw null; } } public string TargetNames { get { throw null; } } public string ToolsVersion { get { throw null; } } } public delegate void ProjectStartedEventHandler(object sender, Microsoft.Build.Framework.ProjectStartedEventArgs e); public enum RegisteredTaskObjectLifetime { AppDomain = 1, Build = 0, } [System.AttributeUsageAttribute((System.AttributeTargets)(128), AllowMultiple=false, Inherited=false)] public sealed partial class RequiredAttribute : System.Attribute { public RequiredAttribute() { } } [System.AttributeUsageAttribute((System.AttributeTargets)(4), AllowMultiple=false, Inherited=false)] public sealed partial class RequiredRuntimeAttribute : System.Attribute { public RequiredRuntimeAttribute(string runtimeVersion) { } public string RuntimeVersion { get { throw null; } } } [System.AttributeUsageAttribute((System.AttributeTargets)(4), AllowMultiple=false, Inherited=false)] public sealed partial class RunInMTAAttribute : System.Attribute { public RunInMTAAttribute() { } } [System.AttributeUsageAttribute((System.AttributeTargets)(4), AllowMultiple=false, Inherited=false)] public sealed partial class RunInSTAAttribute : System.Attribute { public RunInSTAAttribute() { } } public partial class TargetFinishedEventArgs : Microsoft.Build.Framework.BuildStatusEventArgs { protected TargetFinishedEventArgs() { } public TargetFinishedEventArgs(string message, string helpKeyword, string targetName, string projectFile, string targetFile, bool succeeded) { } public TargetFinishedEventArgs(string message, string helpKeyword, string targetName, string projectFile, string targetFile, bool succeeded, System.Collections.IEnumerable targetOutputs) { } public TargetFinishedEventArgs(string message, string helpKeyword, string targetName, string projectFile, string targetFile, bool succeeded, System.DateTime eventTimestamp, System.Collections.IEnumerable targetOutputs) { } public string ProjectFile { get { throw null; } } public bool Succeeded { get { throw null; } } public string TargetFile { get { throw null; } } public string TargetName { get { throw null; } } public System.Collections.IEnumerable TargetOutputs { get { throw null; } set { } } } public delegate void TargetFinishedEventHandler(object sender, Microsoft.Build.Framework.TargetFinishedEventArgs e); public partial class TargetStartedEventArgs : Microsoft.Build.Framework.BuildStatusEventArgs { protected TargetStartedEventArgs() { } public TargetStartedEventArgs(string message, string helpKeyword, string targetName, string projectFile, string targetFile) { } public TargetStartedEventArgs(string message, string helpKeyword, string targetName, string projectFile, string targetFile, string parentTarget, System.DateTime eventTimestamp) { } public string ParentTarget { get { throw null; } } public string ProjectFile { get { throw null; } } public string TargetFile { get { throw null; } } public string TargetName { get { throw null; } } } public delegate void TargetStartedEventHandler(object sender, Microsoft.Build.Framework.TargetStartedEventArgs e); public partial class TaskCommandLineEventArgs : Microsoft.Build.Framework.BuildMessageEventArgs { protected TaskCommandLineEventArgs() { } public TaskCommandLineEventArgs(string commandLine, string taskName, Microsoft.Build.Framework.MessageImportance importance) { } public TaskCommandLineEventArgs(string commandLine, string taskName, Microsoft.Build.Framework.MessageImportance importance, System.DateTime eventTimestamp) { } public string CommandLine { get { throw null; } } public string TaskName { get { throw null; } } } public partial class TaskFinishedEventArgs : Microsoft.Build.Framework.BuildStatusEventArgs { protected TaskFinishedEventArgs() { } public TaskFinishedEventArgs(string message, string helpKeyword, string projectFile, string taskFile, string taskName, bool succeeded) { } public TaskFinishedEventArgs(string message, string helpKeyword, string projectFile, string taskFile, string taskName, bool succeeded, System.DateTime eventTimestamp) { } public string ProjectFile { get { throw null; } } public bool Succeeded { get { throw null; } } public string TaskFile { get { throw null; } } public string TaskName { get { throw null; } } } public delegate void TaskFinishedEventHandler(object sender, Microsoft.Build.Framework.TaskFinishedEventArgs e); public partial class TaskPropertyInfo { public TaskPropertyInfo(string name, System.Type typeOfParameter, bool output, bool required) { } public string Name { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } } public bool Output { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } } public System.Type PropertyType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } } public bool Required { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } } } public partial class TaskStartedEventArgs : Microsoft.Build.Framework.BuildStatusEventArgs { protected TaskStartedEventArgs() { } public TaskStartedEventArgs(string message, string helpKeyword, string projectFile, string taskFile, string taskName) { } public TaskStartedEventArgs(string message, string helpKeyword, string projectFile, string taskFile, string taskName, System.DateTime eventTimestamp) { } public string ProjectFile { get { throw null; } } public string TaskFile { get { throw null; } } public string TaskName { get { throw null; } } } public delegate void TaskStartedEventHandler(object sender, Microsoft.Build.Framework.TaskStartedEventArgs e); } #if !NETSTANDARD namespace Microsoft.Build.Framework.XamlTypes { public sealed partial class Argument : System.ComponentModel.ISupportInitialize { public Argument() { } public bool IsRequired { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string Property { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string Separator { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public void BeginInit() { } public void EndInit() { } } [System.Windows.Markup.ContentPropertyAttribute("Arguments")] public abstract partial class BaseProperty : System.ComponentModel.ISupportInitialize { protected BaseProperty() { } public System.Collections.Generic.List<Microsoft.Build.Framework.XamlTypes.Argument> Arguments { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string Category { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public Microsoft.Build.Framework.XamlTypes.Rule ContainingRule { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } } public Microsoft.Build.Framework.XamlTypes.DataSource DataSource { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } [System.ComponentModel.LocalizableAttribute(true)] public string Default { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } [System.ComponentModel.LocalizableAttribute(true)] public string Description { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } [System.ComponentModel.LocalizableAttribute(true)] public string DisplayName { get { throw null; } set { } } [System.ComponentModel.LocalizableAttribute(false)] public string F1Keyword { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public int HelpContext { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } [System.ComponentModel.LocalizableAttribute(false)] public string HelpFile { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } [System.ComponentModel.LocalizableAttribute(false)] public string HelpUrl { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public bool IncludeInCommandLine { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public bool IsRequired { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public System.Collections.Generic.List<Microsoft.Build.Framework.XamlTypes.NameValuePair> Metadata { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public bool MultipleValuesAllowed { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string Name { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public bool ReadOnly { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string Separator { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string Subcategory { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string Switch { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string SwitchPrefix { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public System.Collections.Generic.List<Microsoft.Build.Framework.XamlTypes.ValueEditor> ValueEditors { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public bool Visible { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public virtual void BeginInit() { } public virtual void EndInit() { } } public sealed partial class BoolProperty : Microsoft.Build.Framework.XamlTypes.BaseProperty { public BoolProperty() { } public string ReverseSwitch { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } } public sealed partial class Category : Microsoft.Build.Framework.XamlTypes.CategorySchema, System.ComponentModel.ISupportInitialize { public Category() { } [System.ComponentModel.LocalizableAttribute(true)] public string Description { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } [System.ComponentModel.LocalizableAttribute(true)] public string DisplayName { get { throw null; } set { } } [System.ComponentModel.LocalizableAttribute(true)] public string HelpString { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string Name { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string Subtype { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public void BeginInit() { } public void EndInit() { } } public abstract partial class CategorySchema { protected CategorySchema() { } } [System.Windows.Markup.ContentPropertyAttribute("Metadata")] public sealed partial class ContentType : Microsoft.Build.Framework.XamlTypes.IProjectSchemaNode, System.ComponentModel.ISupportInitialize { public ContentType() { } public bool DefaultContentTypeForItemType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } [System.ComponentModel.LocalizableAttribute(true)] public string DisplayName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } [System.ObsoleteAttribute("Unused. Use ItemType property instead.", true)] public string ItemGroupName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string ItemType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public System.Collections.Generic.List<Microsoft.Build.Framework.XamlTypes.NameValuePair> Metadata { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string Name { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public void BeginInit() { } public void EndInit() { } public string GetMetadata(string metadataName) { throw null; } public System.Collections.Generic.IEnumerable<object> GetSchemaObjects(System.Type type) { throw null; } public System.Collections.Generic.IEnumerable<System.Type> GetSchemaObjectTypes() { throw null; } } public sealed partial class DataSource : System.ComponentModel.ISupportInitialize { public DataSource() { } public bool HasConfigurationCondition { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string ItemType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string Label { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string MSBuildTarget { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string PersistedName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string Persistence { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public Microsoft.Build.Framework.XamlTypes.DefaultValueSourceLocation SourceOfDefaultValue { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string SourceType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public void BeginInit() { } public void EndInit() { } } public enum DefaultValueSourceLocation { AfterContext = 1, BeforeContext = 0, } public sealed partial class DynamicEnumProperty : Microsoft.Build.Framework.XamlTypes.BaseProperty { public DynamicEnumProperty() { } public string EnumProvider { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public System.Collections.Generic.List<Microsoft.Build.Framework.XamlTypes.NameValuePair> ProviderSettings { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } } [System.Windows.Markup.ContentPropertyAttribute("AdmissibleValues")] public sealed partial class EnumProperty : Microsoft.Build.Framework.XamlTypes.BaseProperty { public EnumProperty() { } public System.Collections.Generic.List<Microsoft.Build.Framework.XamlTypes.EnumValue> AdmissibleValues { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public override void EndInit() { } } [System.Windows.Markup.ContentPropertyAttribute("Arguments")] public sealed partial class EnumValue { public EnumValue() { } public System.Collections.Generic.List<Microsoft.Build.Framework.XamlTypes.Argument> Arguments { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } [System.ComponentModel.LocalizableAttribute(true)] public string Description { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } [System.ComponentModel.LocalizableAttribute(true)] public string DisplayName { get { throw null; } set { } } [System.ComponentModel.LocalizableAttribute(true)] public string HelpString { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public bool IsDefault { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public System.Collections.Generic.List<Microsoft.Build.Framework.XamlTypes.NameValuePair> Metadata { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string Name { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string Switch { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string SwitchPrefix { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } } public sealed partial class FileExtension : Microsoft.Build.Framework.XamlTypes.IProjectSchemaNode { public FileExtension() { } public string ContentType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string Name { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public System.Collections.Generic.IEnumerable<object> GetSchemaObjects(System.Type type) { throw null; } public System.Collections.Generic.IEnumerable<System.Type> GetSchemaObjectTypes() { throw null; } } public sealed partial class IntProperty : Microsoft.Build.Framework.XamlTypes.BaseProperty { public IntProperty() { } public System.Nullable<int> MaxValue { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public System.Nullable<int> MinValue { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public override void EndInit() { } } public partial interface IProjectSchemaNode { System.Collections.Generic.IEnumerable<object> GetSchemaObjects(System.Type type); System.Collections.Generic.IEnumerable<System.Type> GetSchemaObjectTypes(); } public sealed partial class ItemType : Microsoft.Build.Framework.XamlTypes.IProjectSchemaNode, System.ComponentModel.ISupportInitialize { public ItemType() { } public string DefaultContentType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } [System.ComponentModel.LocalizableAttribute(true)] public string DisplayName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string Name { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public bool UpToDateCheckInput { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public void BeginInit() { } public void EndInit() { } public System.Collections.Generic.IEnumerable<object> GetSchemaObjects(System.Type type) { throw null; } public System.Collections.Generic.IEnumerable<System.Type> GetSchemaObjectTypes() { throw null; } } public partial class NameValuePair { public NameValuePair() { } public string Name { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } [System.ComponentModel.LocalizableAttribute(true)] public string Value { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } } [System.Windows.Markup.ContentPropertyAttribute("Nodes")] public sealed partial class ProjectSchemaDefinitions : Microsoft.Build.Framework.XamlTypes.IProjectSchemaNode { public ProjectSchemaDefinitions() { } public System.Collections.Generic.List<Microsoft.Build.Framework.XamlTypes.IProjectSchemaNode> Nodes { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public System.Collections.Generic.IEnumerable<object> GetSchemaObjects(System.Type type) { throw null; } public System.Collections.Generic.IEnumerable<System.Type> GetSchemaObjectTypes() { throw null; } } [System.Diagnostics.DebuggerDisplayAttribute("Rule: {Name}")] [System.Windows.Markup.ContentPropertyAttribute("Properties")] public sealed partial class Rule : Microsoft.Build.Framework.XamlTypes.RuleSchema, Microsoft.Build.Framework.XamlTypes.IProjectSchemaNode, System.ComponentModel.ISupportInitialize { public Rule() { } public string AdditionalInputs { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public System.Collections.Generic.List<Microsoft.Build.Framework.XamlTypes.Category> Categories { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string CommandLine { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public Microsoft.Build.Framework.XamlTypes.DataSource DataSource { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } [System.ComponentModel.LocalizableAttribute(true)] public string Description { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } [System.ComponentModel.LocalizableAttribute(true)] public string DisplayName { get { throw null; } set { } } public System.Collections.Generic.List<Microsoft.Build.Framework.XamlTypes.Category> EvaluatedCategories { get { throw null; } } public string ExecutionDescription { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string FileExtension { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } [System.ComponentModel.LocalizableAttribute(true)] public string HelpString { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public System.Collections.Generic.Dictionary<string, object> Metadata { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string Name { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public int Order { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string Outputs { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public Microsoft.Build.Framework.XamlTypes.RuleOverrideMode OverrideMode { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string PageTemplate { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public System.Collections.Generic.List<Microsoft.Build.Framework.XamlTypes.BaseProperty> Properties { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public bool PropertyPagesHidden { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string Separator { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public bool ShowOnlyRuleProperties { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public bool SupportsFileBatching { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string SwitchPrefix { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string ToolName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public void BeginInit() { } public void EndInit() { } public System.Collections.Specialized.OrderedDictionary GetPropertiesByCategory() { throw null; } public System.Collections.Generic.IList<Microsoft.Build.Framework.XamlTypes.BaseProperty> GetPropertiesInCategory(string categoryName) { throw null; } public Microsoft.Build.Framework.XamlTypes.BaseProperty GetProperty(string propertyName) { throw null; } public System.Collections.Generic.IEnumerable<object> GetSchemaObjects(System.Type type) { throw null; } public System.Collections.Generic.IEnumerable<System.Type> GetSchemaObjectTypes() { throw null; } } [System.Windows.Markup.ContentPropertyAttribute("Rules")] public sealed partial class RuleBag : Microsoft.Build.Framework.XamlTypes.IProjectSchemaNode, System.ComponentModel.ISupportInitialize { public RuleBag() { } public System.Collections.Generic.List<Microsoft.Build.Framework.XamlTypes.Rule> Rules { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public void BeginInit() { } public void EndInit() { } public System.Collections.Generic.IEnumerable<object> GetSchemaObjects(System.Type type) { throw null; } public System.Collections.Generic.IEnumerable<System.Type> GetSchemaObjectTypes() { throw null; } } public enum RuleOverrideMode { Extend = 1, Replace = 0, } public abstract partial class RuleSchema { protected RuleSchema() { } } public sealed partial class StringListProperty : Microsoft.Build.Framework.XamlTypes.BaseProperty { public StringListProperty() { } public string CommandLineValueSeparator { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string RendererValueSeparator { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string Subtype { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } } public sealed partial class StringProperty : Microsoft.Build.Framework.XamlTypes.BaseProperty { public StringProperty() { } public string Subtype { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } } [System.Windows.Markup.ContentPropertyAttribute("Metadata")] public sealed partial class ValueEditor : System.ComponentModel.ISupportInitialize { public ValueEditor() { } [System.ComponentModel.LocalizableAttribute(true)] public string DisplayName { get { throw null; } set { } } public string EditorType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public System.Collections.Generic.List<Microsoft.Build.Framework.XamlTypes.NameValuePair> Metadata { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public void BeginInit() { } public void EndInit() { } } } #endif