ResolveAssemblyReference.SatelliteFiles 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.
Any satellite files found. These will be CopyLocal=true iff the reference or dependency that caused this item to exist is CopyLocal=true. bool CopyLocal - whether the given reference should be copied to the output directory. string DestinationSubDirectory - the relative destination directory that this file should be copied to. This is mainly for satellites.
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 ^> ^ SatelliteFiles { cli::array <Microsoft::Build::Framework::ITaskItem ^> ^ get(); };
[Microsoft.Build.Framework.Output]
public Microsoft.Build.Framework.ITaskItem[] SatelliteFiles { get; }
[Microsoft.Build.Framework.Output]
public Microsoft.Build.Framework.ITaskItem[] SatelliteFiles { [System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")] get; }
[<Microsoft.Build.Framework.Output>]
member this.SatelliteFiles : Microsoft.Build.Framework.ITaskItem[]
[<Microsoft.Build.Framework.Output>]
[<get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]
member this.SatelliteFiles : Microsoft.Build.Framework.ITaskItem[]
Public ReadOnly Property SatelliteFiles As ITaskItem()
Property Value
Any satellite files found.
- Attributes
Remarks
The satellite files will have the CopyLocal
item metadata with a value of true
if the reference or dependency that caused this item to exist also has a CopyLocal
item metadata set to true
.