diff options
-rw-r--r-- | src/xsd/wix.xsd | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/xsd/wix.xsd b/src/xsd/wix.xsd index 8cf81048..8e1ed093 100644 --- a/src/xsd/wix.xsd +++ b/src/xsd/wix.xsd | |||
@@ -8995,9 +8995,14 @@ | |||
8995 | <xs:annotation> | 8995 | <xs:annotation> |
8996 | <xs:documentation> | 8996 | <xs:documentation> |
8997 | A file-selection pattern that can include directory names, file names, and wildcards. | 8997 | A file-selection pattern that can include directory names, file names, and wildcards. |
8998 | If a pattern is not an absolute path (via a preprocessor variable, unnamed bind path, | 8998 | |
8999 | or named bind path), it is interpreted as relative to the directory containing the | 8999 | We recommend that patterns be fully-qualified, absolute paths, |
9000 | source file. Absolute paths via a named bind path are recommended. | 9000 | preferably via named bind path. You can also use preprocessor |
9001 | variables or unnamed bind paths to create absolute paths. | ||
9002 | |||
9003 | If the pattern is a relative path, it is interpreted as relative to either: | ||
9004 | - an unnamed bind path, if one or more is specified. | ||
9005 | - the source directory of the file containing the `Files` element, if no unnamed bind paths are specified. | ||
9001 | 9006 | ||
9002 | Wildcards include typical `*.ext` globs and MSBuild-style `**` globs to indicate | 9007 | Wildcards include typical `*.ext` globs and MSBuild-style `**` globs to indicate |
9003 | that directories should be recursed. Examples include: | 9008 | that directories should be recursed. Examples include: |