aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/CompilerCore.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2020-07-05 23:08:20 -0700
committerRob Mensching <rob@firegiant.com>2020-07-08 15:18:09 -0700
commit7b583330fd42356930bdc5a28820e546f6ca45a4 (patch)
tree3166934d86ed47519bbee32bfa26529400e74ee7 /src/WixToolset.Core/CompilerCore.cs
parente4d3a0d14dec69fd110394b361274de86f61afa2 (diff)
downloadwix-7b583330fd42356930bdc5a28820e546f6ca45a4.tar.gz
wix-7b583330fd42356930bdc5a28820e546f6ca45a4.tar.bz2
wix-7b583330fd42356930bdc5a28820e546f6ca45a4.zip
Move short filename generation to the WindowsInstallerBackend
Diffstat (limited to 'src/WixToolset.Core/CompilerCore.cs')
-rw-r--r--src/WixToolset.Core/CompilerCore.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/WixToolset.Core/CompilerCore.cs b/src/WixToolset.Core/CompilerCore.cs
index 7ec83a7d..c2724f6b 100644
--- a/src/WixToolset.Core/CompilerCore.cs
+++ b/src/WixToolset.Core/CompilerCore.cs
@@ -286,6 +286,7 @@ namespace WixToolset.Core
286 /// <param name="allowWildcards">true if wildcards are allowed in the filename.</param> 286 /// <param name="allowWildcards">true if wildcards are allowed in the filename.</param>
287 /// <param name="args">Any additional information to include in the hash for the generated short name.</param> 287 /// <param name="args">Any additional information to include in the hash for the generated short name.</param>
288 /// <returns>The generated 8.3-compliant short file/directory name.</returns> 288 /// <returns>The generated 8.3-compliant short file/directory name.</returns>
289 [Obsolete]
289 public string CreateShortName(string longName, bool keepExtension, bool allowWildcards, params string[] args) 290 public string CreateShortName(string longName, bool keepExtension, bool allowWildcards, params string[] args)
290 { 291 {
291 return this.parseHelper.CreateShortName(longName, keepExtension, allowWildcards, args); 292 return this.parseHelper.CreateShortName(longName, keepExtension, allowWildcards, args);