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; }
    }
}
t;, "CA1064:ExceptionsShouldBePublic", Justification = "This exception is not public because it is not supposed to be caught by user code - it indicates a bug in AvalonEdit.")] class InternalException : Exception { /// <summary> /// Creates a new InternalException instance. /// </summary> public InternalException() : base() { } /// <summary> /// Creates a new InternalException instance. /// </summary> public InternalException(string message) : base(message) { } /// <summary> /// Creates a new InternalException instance. /// </summary> public InternalException(string message, Exception innerException) : base(message, innerException) { } /// <summary> /// Creates a new InternalException instance. /// </summary> protected InternalException(SerializationInfo info, StreamingContext context) : base(info, context) { } } }