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; }
}
}
|