blob: a21a8409072d3777835ea622c58ffc41203d64f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// 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.
#if !NETCOREAPP
namespace WixToolset.BuildTasks
{
using System;
using System.Threading;
using System.Threading.Tasks;
using WixToolset.Extensibility.Services;
public partial class HeatTask
{
protected sealed override string TaskShortName => "HEAT";
protected sealed override Task<int> ExecuteCoreAsync(IWixToolsetCoreServiceProvider coreProvider, string commandLineString, CancellationToken cancellationToken) => throw new NotImplementedException();
}
}
#endif
|