GenerateTemporaryTargetAssembly.GenerateTemporaryTargetAssemblyDebuggingInformation Property

Definition

Gets or sets a value that indicates whether debugging information is enabled for the GenerateTemporaryTargetAssembly Task. The default value is false.

public:
 property bool GenerateTemporaryTargetAssemblyDebuggingInformation { bool get(); void set(bool value); };
public bool GenerateTemporaryTargetAssemblyDebuggingInformation { get; set; }
member this.GenerateTemporaryTargetAssemblyDebuggingInformation : bool with get, set
Public Property GenerateTemporaryTargetAssemblyDebuggingInformation As Boolean

Property Value

true if debugging information is enabled for the GenerateTemporaryTargetAssembly Task; otherwise, false.

Remarks

The GenerateTemporaryTargetAssemblyDebuggingInformation property is an optional task parameter. It's a diagnostic parameter, and it defaults to false.

The only debugging information that is generated consists of the temporary project that is created to generate the temporary target assembly. The temporary project is normally deleted at the end of the MSBuild task. When GenerateTemporaryTargetAssemblyDebuggingInformation is enabled, the temporary project is retained for inspection by the developer.

Applies to