Log more data from exceptions. Add net472 MSBuild tasks.
Bob Arnson committed
Feb 27, 2020 at 14:04 UTC
708d7a342330a10e07fb473745e9156c05049b7f
3 files changed
+3
-1
appveyor.cmd
+1
@@ -9,6 +9,7 @@ dotnet test -c Release src\test\WixToolsetTest.WixCop
9
10
dotnet publish -c Release -o %_P%\dotnet-wix\ -f netcoreapp2.1 src\wix
11
dotnet publish -c Release -o %_P%\WixToolset.MSBuild\net461\ -f net461 src\WixToolset.BuildTasks
12
+dotnet publish -c Release -o %_P%\WixToolset.MSBuild\net472\ -f net472 src\WixToolset.BuildTasks
13
dotnet publish -c Release -o %_P%\WixToolset.MSBuild\netstandard2.0\ -f netstandard2.0 src\WixToolset.BuildTasks
14
15
@rem dotnet publish -c Release -o %_P%\netcoreapp2.1 -r win-x86 src\wix
src/WixToolset.BuildTasks/DoIt.cs
+1
-1
@@ -123,7 +123,7 @@ namespace WixToolset.BuildTasks
123
}
124
catch (Exception e)
125
{
126
- this.Log.LogErrorFromException(e);
126
+ this.Log.LogErrorFromException(e, showStackTrace: true, showDetail: true, null);
127
128
if (e is NullReferenceException || e is SEHException)
129
{
src/WixToolset.MSBuild/WixToolset.MSBuild.nuspec
+1
@@ -13,6 +13,7 @@
13
<files>
14
<file src="$projectFolder$$id$.props" target="build" />
15
<file src="net461\*" target="tools\net461" />
16
+ <file src="net472\*" target="tools\net472" />
17
<file src="netstandard2.0\*" target="tools\netstandard2.0" />
18
</files>
19
</package>