aboutsummaryrefslogtreecommitdiff
path: root/src/internal/WixInternal.TestSupport/Builder.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/internal/WixInternal.TestSupport/Builder.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/internal/WixInternal.TestSupport/Builder.cs b/src/internal/WixInternal.TestSupport/Builder.cs
index eec51797..aee5a8cf 100644
--- a/src/internal/WixInternal.TestSupport/Builder.cs
+++ b/src/internal/WixInternal.TestSupport/Builder.cs
@@ -64,7 +64,7 @@ namespace WixInternal.TestSupport
64 foreach (var ext in this.ExtensionTypes) 64 foreach (var ext in this.ExtensionTypes)
65 { 65 {
66 args.Add("-ext"); 66 args.Add("-ext");
67 args.Add(Path.GetFullPath(new Uri(ext.Assembly.CodeBase).LocalPath)); 67 args.Add(Path.GetFullPath(ext.Assembly.Location));
68 } 68 }
69 69
70 args.AddRange(sourceFiles); 70 args.AddRange(sourceFiles);
@@ -126,7 +126,7 @@ namespace WixInternal.TestSupport
126 foreach (var ext in this.ExtensionTypes) 126 foreach (var ext in this.ExtensionTypes)
127 { 127 {
128 firstBuildArgs.Add("-ext"); 128 firstBuildArgs.Add("-ext");
129 firstBuildArgs.Add(Path.GetFullPath(new Uri(ext.Assembly.CodeBase).LocalPath)); 129 firstBuildArgs.Add(Path.GetFullPath(ext.Assembly.Location));
130 } 130 }
131 131
132 firstBuildArgs.AddRange(sourceFiles); 132 firstBuildArgs.AddRange(sourceFiles);
@@ -171,7 +171,7 @@ namespace WixInternal.TestSupport
171 foreach (var ext in this.ExtensionTypes) 171 foreach (var ext in this.ExtensionTypes)
172 { 172 {
173 decompileArgs.Add("-ext"); 173 decompileArgs.Add("-ext");
174 decompileArgs.Add(Path.GetFullPath(new Uri(ext.Assembly.CodeBase).LocalPath)); 174 decompileArgs.Add(Path.GetFullPath(ext.Assembly.Location));
175 } 175 }
176 176
177 decompileFunc(decompileArgs.ToArray()); 177 decompileFunc(decompileArgs.ToArray());
@@ -188,7 +188,7 @@ namespace WixInternal.TestSupport
188 foreach (var ext in this.ExtensionTypes) 188 foreach (var ext in this.ExtensionTypes)
189 { 189 {
190 secondBuildArgs.Add("-ext"); 190 secondBuildArgs.Add("-ext");
191 secondBuildArgs.Add(Path.GetFullPath(new Uri(ext.Assembly.CodeBase).LocalPath)); 191 secondBuildArgs.Add(Path.GetFullPath(ext.Assembly.Location));
192 } 192 }
193 193
194 secondBuildArgs.Add("-bindpath"); 194 secondBuildArgs.Add("-bindpath");