aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.BuildTasks
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2020-02-27 14:04:12 -0500
committerBob Arnson <bob@firegiant.com>2020-02-27 14:08:48 -0500
commit708d7a342330a10e07fb473745e9156c05049b7f (patch)
tree70bc5d091c942998e4c71270eb3aacb29a73c00c /src/WixToolset.BuildTasks
parentf30a041627a9c43919bcbe5e96a1cfe55ef11c7c (diff)
downloadwix-708d7a342330a10e07fb473745e9156c05049b7f.tar.gz
wix-708d7a342330a10e07fb473745e9156c05049b7f.tar.bz2
wix-708d7a342330a10e07fb473745e9156c05049b7f.zip
Log more data from exceptions. Add net472 MSBuild tasks.
Diffstat (limited to 'src/WixToolset.BuildTasks')
-rw-r--r--src/WixToolset.BuildTasks/DoIt.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.BuildTasks/DoIt.cs b/src/WixToolset.BuildTasks/DoIt.cs
index 6af2a50a..5faf163c 100644
--- a/src/WixToolset.BuildTasks/DoIt.cs
+++ b/src/WixToolset.BuildTasks/DoIt.cs
@@ -123,7 +123,7 @@ namespace WixToolset.BuildTasks
123 } 123 }
124 catch (Exception e) 124 catch (Exception e)
125 { 125 {
126 this.Log.LogErrorFromException(e); 126 this.Log.LogErrorFromException(e, showStackTrace: true, showDetail: true, null);
127 127
128 if (e is NullReferenceException || e is SEHException) 128 if (e is NullReferenceException || e is SEHException)
129 { 129 {