diff options
author | Rob Mensching <rob@firegiant.com> | 2017-10-01 14:26:52 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2017-10-01 14:26:52 -0700 |
commit | 87f5e82ab7f40631845c3a3a936d5417c94157d3 (patch) | |
tree | 812f219c047dd8a627fbfb9223ca4441a53084e9 | |
parent | e08086b633b701906ec7bc6246eec3148bc1d9d6 (diff) | |
download | wix-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.cs | 2 |
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); |