blob: b76aaf62b950880d37aa91dc993d62cf2ad11f83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
// 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.
namespace WixToolset.Harvesters.Extensibility
{
using System;
using WixToolset.Harvesters.Data;
/// <summary>
/// An extension for the WiX Toolset Harvester application.
/// </summary>
public abstract class BaseHeatExtension : IHeatExtension
{
/// <summary>
/// Gets or sets the heat core for the extension.
/// </summary>
/// <value>The heat core for the extension.</value>
public IHeatCore Core { get; set; }
/// <summary>
/// Gets the supported command line types for this extension.
/// </summary>
/// <value>The supported command line types for this extension.</value>
public virtual HeatCommandLineOption[] CommandLineTypes
{
get { return null; }
}
/// <summary>
/// Parse the command line options for this extension.
/// </summary>
/// <param name="type">The active harvester type.</param>
/// <param name="args">The option arguments.</param>
public virtual void ParseOptions(string type, string[] args)
{
}
/// <summary>
/// Determines if the index refers to an argument.
/// </summary>
/// <param name="args"></param>
/// <param name="index"></param>
/// <returns></returns>
public static bool IsValidArg(string[] args, int index)
{
if (args.Length <= index || String.IsNullOrEmpty(args[index]) || '/' == args[index][0] || '-' == args[index][0])
{
return false;
}
else
{
return true;
}
}
}
}
|