AL.EmbedResources Property

Definition

Gets or sets the resources to embed in the image that contains the assembly 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 ^> ^ EmbedResources { cli::array <Microsoft::Build::Framework::ITaskItem ^> ^ get(); void set(cli::array <Microsoft::Build::Framework::ITaskItem ^> ^ value); };
public Microsoft.Build.Framework.ITaskItem[] EmbedResources { get; set; }
member this.EmbedResources : Microsoft.Build.Framework.ITaskItem[] with get, set
Public Property EmbedResources As ITaskItem()

Property Value

The resources to embed in the image that contains the assembly manifest.

Remarks

This task copies the contents of the resource file into the image. The items set in this property may have optional metadata attached to them called LogicalName and Access. The LogicalName metadata is used to specify the internal identifier for the resource. The Access metadata can be set to private in order to make the resource not visible to other assemblies. For more information, see the documentation for the /embed[resource] option in Al.exe (Assembly Linker).

Applies to