blob: 408fd74dc2365d3ff836e9e0034c20be47731540 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<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; }
}
}
|