aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2017-10-01 14:26:52 -0700
committerRob Mensching <rob@firegiant.com>2017-10-01 14:26:52 -0700
commit87f5e82ab7f40631845c3a3a936d5417c94157d3 (patch)
tree812f219c047dd8a627fbfb9223ca4441a53084e9
parente08086b633b701906ec7bc6246eec3148bc1d9d6 (diff)
downloadwix-87f5e82ab7f40631845c3a3a936d5417c94157d3.tar.gz
wix-87f5e82ab7f40631845c3a3a936d5417c94157d3.tar.bz2
wix-87f5e82ab7f40631845c3a3a936d5417c94157d3.zip
Ensure full path provided to IDT import
-rw-r--r--src/WixToolset.Core/Msi/Database.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core/Msi/Database.cs b/src/WixToolset.Core/Msi/Database.cs
index 7c3a97bb..801ebdde 100644
--- a/src/WixToolset.Core/Msi/Database.cs
+++ b/src/WixToolset.Core/Msi/Database.cs
@@ -131,7 +131,7 @@ namespace WixToolset.Msi
131 /// <exception cref="MsiException">Another error occured while importing the IDT file.</exception> 131 /// <exception cref="MsiException">Another error occured while importing the IDT file.</exception>
132 public void Import(string idtPath) 132 public void Import(string idtPath)
133 { 133 {
134 string folderPath = Path.GetDirectoryName(idtPath); 134 string folderPath = Path.GetFullPath(Path.GetDirectoryName(idtPath));
135 string fileName = Path.GetFileName(idtPath); 135 string fileName = Path.GetFileName(idtPath);
136 136
137 int error = MsiInterop.MsiDatabaseImport(this.Handle, folderPath, fileName); 137 int error = MsiInterop.MsiDatabaseImport(this.Handle, folderPath, fileName);