blob: 5cf1bc9c2a92eefc376d2d528f512ca21c0c235a (
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
|
// 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.Mba.Host
{
using System;
using System.Configuration;
/// <summary>
/// Handler for the wix.bootstrapper configuration section group.
/// </summary>
public class BootstrapperSectionGroup : ConfigurationSectionGroup
{
/// <summary>
/// Creates a new instance of the <see cref="BootstrapperSectionGroup"/> class.
/// </summary>
public BootstrapperSectionGroup()
{
}
/// <summary>
/// Gets the <see cref="HostSection"/> handler for the mba configuration section.
/// </summary>
[ConfigurationProperty("host")]
public HostSection Host
{
get { return (HostSection)base.Sections["host"]; }
}
}
}
|