diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-06-03 12:31:23 +1000 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-06-03 14:24:34 +1000 |
commit | be9b04d2272ef9a9e811d2d5486593b628a68993 (patch) | |
tree | 6527d1394aac1d67c8e4e9bd3ed6ae60b184a6eb /src/WixToolset.BuildTasks/ToolsetTask_InProc.cs | |
parent | d5d5e87acf7eadacd757083a4d0272a04962ae9b (diff) | |
download | wix-be9b04d2272ef9a9e811d2d5486593b628a68993.tar.gz wix-be9b04d2272ef9a9e811d2d5486593b628a68993.tar.bz2 wix-be9b04d2272ef9a9e811d2d5486593b628a68993.zip |
Never run in-proc on .NET Core.
Diffstat (limited to 'src/WixToolset.BuildTasks/ToolsetTask_InProc.cs')
-rw-r--r-- | src/WixToolset.BuildTasks/ToolsetTask_InProc.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/WixToolset.BuildTasks/ToolsetTask_InProc.cs b/src/WixToolset.BuildTasks/ToolsetTask_InProc.cs index 4b365b2a..a3290e60 100644 --- a/src/WixToolset.BuildTasks/ToolsetTask_InProc.cs +++ b/src/WixToolset.BuildTasks/ToolsetTask_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 | ||
3 | namespace WixToolset.BuildTasks | 4 | namespace WixToolset.BuildTasks |
4 | { | 5 | { |
5 | using System; | 6 | using System; |
@@ -69,3 +70,4 @@ namespace WixToolset.BuildTasks | |||
69 | protected abstract string TaskShortName { get; } | 70 | protected abstract string TaskShortName { get; } |
70 | } | 71 | } |
71 | } | 72 | } |
73 | #endif | ||