ResolveAssemblyReference.FullFrameworkAssemblyTables Property

Definition

A list of XML files that contain the full framework for the profile.

Normally nothing is passed in here, this is for the cases where the location of the xml file for the full framework is not under a RedistList folder.

Format of the file is like:

<FileList Redist="MatchingRedistListName"><File AssemblyName="System" Version="2.0.0.0" PublicKeyToken="b77a5c561934e089" Culture="neutral" ProcessorArchitecture="MSIL" FileVersion="2.0.40824.0" InGAC="true"></File>
    etc.</FileList>

Items in this list must specify the "FrameworkDirectory" metadata to associate an redist list with a particular framework directory. If the association is not made an error will be logged. The reason is, The logic in rar assumes if a FrameworkDirectory is not set it will use the target framework directory.

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

Property Value

A list of items representing XML files that contain the full framework for the profile.

Attributes

Remarks

Normally nothing is passed in here, this is for the cases where the location of the xml file for the full framework is not under a RedistList folder.

Format of the file is like: etc.

<FileList Redist="MatchingRedistListName" >  
  <File AssemblyName="System" Version="2.0.0.0"  
    PublicKeyToken="b77a5c561934e089" Culture="neutral"  
    ProcessorArchitecture="MSIL" FileVersion="2.0.40824.0" InGAC="true"  
  />  
// etc.  
</FileList>  

Items in this list must specify the "FrameworkDirectory" metadata to associate an redist list with a particular framework directory. If the association is not made an error will be logged. The reason is, The logic in RAR assumes if a FrameworkDirectory is not set it will use the target framework directory.

Applies to