aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.BuildTasks/WixBuild_InProc.cs
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-06-03 12:31:23 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-06-03 14:24:34 +1000
commitbe9b04d2272ef9a9e811d2d5486593b628a68993 (patch)
tree6527d1394aac1d67c8e4e9bd3ed6ae60b184a6eb /src/WixToolset.BuildTasks/WixBuild_InProc.cs
parentd5d5e87acf7eadacd757083a4d0272a04962ae9b (diff)
downloadwix-be9b04d2272ef9a9e811d2d5486593b628a68993.tar.gz
wix-be9b04d2272ef9a9e811d2d5486593b628a68993.tar.bz2
wix-be9b04d2272ef9a9e811d2d5486593b628a68993.zip
Never run in-proc on .NET Core.
Diffstat (limited to 'src/WixToolset.BuildTasks/WixBuild_InProc.cs')
-rw-r--r--src/WixToolset.BuildTasks/WixBuild_InProc.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/WixToolset.BuildTasks/WixBuild_InProc.cs b/src/WixToolset.BuildTasks/WixBuild_InProc.cs
index 8e9f2fec..49148c8a 100644
--- a/src/WixToolset.BuildTasks/WixBuild_InProc.cs
+++ b/src/WixToolset.BuildTasks/WixBuild_InProc.cs
@@ -1,5 +1,6 @@
1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. 1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2 2
3#if !NETCOREAPP
3namespace WixToolset.BuildTasks 4namespace WixToolset.BuildTasks
4{ 5{
5 using WixToolset.Data; 6 using WixToolset.Data;
@@ -51,3 +52,4 @@ namespace WixToolset.BuildTasks
51 } 52 }
52 } 53 }
53} 54}
55#endif