FingerprintOptions
Options related to calculating source hash.
Initializer
using AlibabaCloud.SDK.ROS.CDK.Core;
new FingerprintOptions {
string[] Exclude = null,
SymlinkFollowMode Follow = null,
IgnoreMode IgnoreMode = null,
string ExtraHash = null
};
Properties
| Name | Type | Description |
|---|---|---|
Exclude |
string[] |
File paths matching the patterns will be excluded. |
Follow |
SymlinkFollowMode |
A strategy for how to handle symlinks. |
IgnoreMode |
IgnoreMode |
The ignore behavior to use for exclude patterns. |
ExtraHash |
string |
Extra information to encode into the fingerprint (e.g. build instructions and other inputs). |
ExcludeOptional
public string[] Exclude { get; set; }
- Type: string[]
- Default: nothing is excluded
File paths matching the patterns will be excluded.
See ignoreMode to set the matching behavior.
Has no effect on Assets bundled using the bundling property.
FollowOptional
public SymlinkFollowMode Follow { get; set; }
- Type: SymlinkFollowMode
- Default: SymlinkFollowMode.NEVER
A strategy for how to handle symlinks.
IgnoreModeOptional
public IgnoreMode IgnoreMode { get; set; }
- Type: IgnoreMode
- Default: IgnoreMode.GLOB
The ignore behavior to use for exclude patterns.
ExtraHashOptional
public string ExtraHash { get; set; }
- Type: string
- Default: hash is only based on source content
Extra information to encode into the fingerprint (e.g. build instructions and other inputs).