diff options
author | Rob Mensching <rob@firegiant.com> | 2021-04-06 09:34:57 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2021-04-06 16:10:05 -0700 |
commit | 86e59fdbc94ae661ca682f04cddb60d7830ae8a8 (patch) | |
tree | 227b19100f4f116abdd4b4996688a86d58ad3d32 /src/WixToolset.Core/Compiler_Package.cs | |
parent | 860f77f7c9d522074dc7e44cfe11281efd20687f (diff) | |
download | wix-86e59fdbc94ae661ca682f04cddb60d7830ae8a8.tar.gz wix-86e59fdbc94ae661ca682f04cddb60d7830ae8a8.tar.bz2 wix-86e59fdbc94ae661ca682f04cddb60d7830ae8a8.zip |
Introduce StandardDirectory for referencing standard directories
Completes wixtoolset/issues#6416
Diffstat (limited to 'src/WixToolset.Core/Compiler_Package.cs')
-rw-r--r-- | src/WixToolset.Core/Compiler_Package.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/WixToolset.Core/Compiler_Package.cs b/src/WixToolset.Core/Compiler_Package.cs index 576450f4..f9d77873 100644 --- a/src/WixToolset.Core/Compiler_Package.cs +++ b/src/WixToolset.Core/Compiler_Package.cs | |||
@@ -316,6 +316,9 @@ namespace WixToolset.Core | |||
316 | case "SoftwareTag": | 316 | case "SoftwareTag": |
317 | this.ParsePackageTagElement(child); | 317 | this.ParsePackageTagElement(child); |
318 | break; | 318 | break; |
319 | case "StandardDirectory": | ||
320 | this.ParseStandardDirectoryElement(child); | ||
321 | break; | ||
319 | case "SummaryInformation": | 322 | case "SummaryInformation": |
320 | this.ParseSummaryInformationElement(child, ref isCodepageSet, ref isPackageNameSet, ref isKeywordsSet, ref isPackageAuthorSet); | 323 | this.ParseSummaryInformationElement(child, ref isCodepageSet, ref isPackageNameSet, ref isKeywordsSet, ref isPackageAuthorSet); |
321 | break; | 324 | break; |