GenerateApplicationManifest.IsolatedComReferences Property

Definition

Gets or sets COM components to isolate in the generated manifest.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 property cli::array <Microsoft::Build::Framework::ITaskItem ^> ^ IsolatedComReferences { cli::array <Microsoft::Build::Framework::ITaskItem ^> ^ get(); void set(cli::array <Microsoft::Build::Framework::ITaskItem ^> ^ value); };
public Microsoft.Build.Framework.ITaskItem[] IsolatedComReferences { get; set; }
public Microsoft.Build.Framework.ITaskItem[] IsolatedComReferences { [System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")] get; set; }
member this.IsolatedComReferences : Microsoft.Build.Framework.ITaskItem[] with get, set
[<get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]
member this.IsolatedComReferences : Microsoft.Build.Framework.ITaskItem[] with get, set
Public Property IsolatedComReferences As ITaskItem()

Property Value

The COM components to isolate in the generated manifest.

Attributes

Remarks

This property lets you isolate COM components for "Registration Free COM" deployment. It works by auto-generating a manifest that has standard COM registration definitions. The COM components must be registered on the build computer.

Applies to