aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Publisher.CLI/InfoOptions.cs
blob: 608d3fbcce83db71e813b184bd5f236cee318066 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using CommandLine;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Web;

namespace Tango.MachineStudio.Publisher.CLI
{
    public class InfoOptions
    {
        [Option("env", HelpText = "Specifies the target environment.", Required = true)]
        public DeploymentSlot Environment { get; set; }
    }
}
class="c1">/// Gets or sets the data base settings. /// </summary> public DataBase DataBase { get; set; } /// <summary> /// Gets or sets the machine studio settings. /// </summary> public MachineStudio MachineStudio { get; set; } /// <summary> /// Gets or sets the stubs UI utility settings. /// </summary> public StubsUI StubsUI { get; set; } /// <summary> /// Gets or sets the integration settings. /// </summary> public Integration Integration { get; set; } /// <summary> /// Initializes a new instance of the <see cref="SettingsCollection"/> class. /// </summary> public SettingsCollection() { DataBase = new DataBase(); MachineStudio = new MachineStudio(); StubsUI = new StubsUI(); Integration = new Integration(); } } }