diff options
author | Bob Arnson <bob@firegiant.com> | 2025-06-09 11:43:47 -0400 |
---|---|---|
committer | Bob Arnson <bob@firegiant.com> | 2025-06-09 11:43:47 -0400 |
commit | 8ed093df2b45f9abf92ce952c023333304d22e2e (patch) | |
tree | 486b099fb2fd363906e09aa014f2bd6157fa5c7e | |
parent | fddc154029b838c2fd83a2eee09d53468dd4cf08 (diff) | |
download | wix-bob/UnnamedBindPathsInFiles.tar.gz wix-bob/UnnamedBindPathsInFiles.tar.bz2 wix-bob/UnnamedBindPathsInFiles.zip |
Consistentify unnamed bindpaths doc in `Files`.bob/UnnamedBindPathsInFiles
-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: |