main
cs 14 lines 506 Bytes
Raw
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
3 namespace WixToolset.BuildTasks
4 {
5 using WixToolset.BaseBuildTasks;
6
7 /// <summary>
8 /// An MSBuild task to run WiX to update cabinet signatures in a MSI.
9 /// </summary>
10 public abstract class WixExeBaseTask : BaseToolsetTask
11 {
12 protected override string ToolName => "wix.exe";
13 }
14 }