summaryrefslogtreecommitdiff
path: root/src/tools/WixToolset.HeatTasks/HeatTask.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/WixToolset.HeatTasks/HeatTask.cs')
-rw-r--r--src/tools/WixToolset.HeatTasks/HeatTask.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/tools/WixToolset.HeatTasks/HeatTask.cs b/src/tools/WixToolset.HeatTasks/HeatTask.cs
index 8942a7e1..6b7b9399 100644
--- a/src/tools/WixToolset.HeatTasks/HeatTask.cs
+++ b/src/tools/WixToolset.HeatTasks/HeatTask.cs
@@ -14,7 +14,12 @@ namespace WixToolset.HeatTasks
14 /// </summary> 14 /// </summary>
15 public abstract partial class HeatTask : ToolTask 15 public abstract partial class HeatTask : ToolTask
16 { 16 {
17#if NETFRAMEWORK
17 private static readonly string ThisDllPath = new Uri(typeof(HeatTask).Assembly.CodeBase).AbsolutePath; 18 private static readonly string ThisDllPath = new Uri(typeof(HeatTask).Assembly.CodeBase).AbsolutePath;
19#else
20 private static readonly string ThisDllPath = typeof(HeatTask).Assembly.Location;
21#endif
22
18 23
19 /// <summary> 24 /// <summary>
20 /// Gets or sets additional options that are appended the the tool command-line. 25 /// Gets or sets additional options that are appended the the tool command-line.