namespace BatchWrapper { /// /// Constants for the batch wrapper. /// public static class Constants { /// /// Environment variable names present or needed during the batch task execution. /// public static class EnvironmentVariableNames { /// /// Path to the directory containing the sqlpackage exe. /// internal const string AppPackagePrefix = "AZ_BATCH_APP_PACKAGE"; /// /// Path to the working directory assigned to the batch task. /// internal const string TaskWorkingDir = "AZ_BATCH_TASK_WORKING_DIR"; /// /// Path to the working directory assigned to the batch task. /// internal const string AzBatchTaskId = "AZ_BATCH_TASK_ID"; /// /// Path to the working directory assigned to the batch task. /// internal const string JobContainerUrl = "JOB_CONTAINER_URL"; } } }