GenerateResource.AdditionalInputs Property

Definition

Additional inputs to the dependency checking done by this task. For example, the project and targets files typically should be inputs, so that if they are updated, all resources are regenerated.

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

Property Value

The additional inputs for the dependency checking that the GenerateResource task performs.

Attributes

Remarks

For example, the project and targets files should be inputs to ensure that if they are updated all resources are regenerated.

Applies to