diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2020-06-15 23:21:14 +1000 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2020-06-15 23:25:43 +1000 |
| commit | ad523168cae1ac40580186b1ac446ea6ead9f188 (patch) | |
| tree | 1caf626d67a0a4be8eeed24b68f5a9a8751c0b1e /src/WixToolset.BuildTasks/HeatTask_InProc.cs | |
| parent | 98fa23e91bca6d6a67457df056d0cb6cecf12901 (diff) | |
| download | wix-ad523168cae1ac40580186b1ac446ea6ead9f188.tar.gz wix-ad523168cae1ac40580186b1ac446ea6ead9f188.tar.bz2 wix-ad523168cae1ac40580186b1ac446ea6ead9f188.zip | |
Make it impossible for Heat to try to run in-proc.
Diffstat (limited to 'src/WixToolset.BuildTasks/HeatTask_InProc.cs')
| -rw-r--r-- | src/WixToolset.BuildTasks/HeatTask_InProc.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/WixToolset.BuildTasks/HeatTask_InProc.cs b/src/WixToolset.BuildTasks/HeatTask_InProc.cs index a21a8409..48ee9e02 100644 --- a/src/WixToolset.BuildTasks/HeatTask_InProc.cs +++ b/src/WixToolset.BuildTasks/HeatTask_InProc.cs | |||
| @@ -10,6 +10,8 @@ namespace WixToolset.BuildTasks | |||
| 10 | 10 | ||
| 11 | public partial class HeatTask | 11 | public partial class HeatTask |
| 12 | { | 12 | { |
| 13 | public override bool RunAsSeparateProcess { get => true; } | ||
| 14 | |||
| 13 | protected sealed override string TaskShortName => "HEAT"; | 15 | protected sealed override string TaskShortName => "HEAT"; |
| 14 | 16 | ||
| 15 | protected sealed override Task<int> ExecuteCoreAsync(IWixToolsetCoreServiceProvider coreProvider, string commandLineString, CancellationToken cancellationToken) => throw new NotImplementedException(); | 17 | protected sealed override Task<int> ExecuteCoreAsync(IWixToolsetCoreServiceProvider coreProvider, string commandLineString, CancellationToken cancellationToken) => throw new NotImplementedException(); |
