AL.LinkResources Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the resource files to link to an assembly.
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 ^> ^ LinkResources { cli::array <Microsoft::Build::Framework::ITaskItem ^> ^ get(); void set(cli::array <Microsoft::Build::Framework::ITaskItem ^> ^ value); };
public Microsoft.Build.Framework.ITaskItem[] LinkResources { get; set; }
member this.LinkResources : Microsoft.Build.Framework.ITaskItem[] with get, set
Public Property LinkResources As ITaskItem()
Property Value
The resource files to link to an assembly.
Remarks
The resource becomes part of the assembly, but the file is not copied. The items passed in to this parameter may have optional metadata attached to them called LogicalName
, Target
, and Access
. The LogicalName
metadata is used to specify the internal identifier for the resource. The Target
metadata can specify the path and filename to which the task copies the file, after which it compiles this new file into the assembly. 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 /link[resource]
option in Al.exe (Assembly Linker).