blob: e57143046cf72bdf9159fc5689a677a4e3c15b54 (
plain)
1
2
3
4
5
6
7
8
9
|
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace{
[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
}
}
|