blob: d8c64363c7a816f460458603f1e5e15329c36250 (
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
30
31
32
33
34
35
36
37
|
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Web
{
public enum DeploymentSlot
{
[Description("Development")]
[DeploymentSlotAddress("https://machineservice-dev.twine-srv.com")]
DEV,
[Description("Testing")]
[DeploymentSlotAddress("https://machineservice-test.twine-srv.com")]
TEST,
[Description("Process")]
[DeploymentSlotAddress("https://machineservice-process.twine-srv.com")]
PROCESS,
[Description("Alpha")]
[DeploymentSlotAddress("https://machineservice-alpha.twine-srv.com")]
ALPHA,
[Description("Beta")]
[DeploymentSlotAddress("https://machineservice-beta.twine-srv.com")]
BETA,
[Description("Staging")]
[DeploymentSlotAddress("https://machineservice-stage.twine-srv.com")]
STAGE,
[Description("Production")]
[DeploymentSlotAddress("https://machineservice.twine-srv.com")]
PROD,
[Description("BB")]
[DeploymentSlotAddress("https://machineservice-machineservice-bb.azurewebsites.net")]
BB
}
}
|