public DeploymentDescriptor(ITypeInfo testClassType)
        {
            _testClassType = testClassType;

            var scopeAttr = testClassType.GetFirstCustomAttribute<NuwaWebDeploymentScopeAttribute>();
            if (scopeAttr != null)
            {
                this.DeploymentType = scopeAttr.DeploymentType;
                ScopePath = scopeAttr.ScopePath;
                ScopeResourceType = scopeAttr.ResourceType;
            }
        }
        public DeploymentDescriptor(ITypeInfo testClassType)
        {
            _testClassType = testClassType;

            var scopeAttr = testClassType.GetFirstCustomAttribute <NuwaWebDeploymentScopeAttribute>();

            if (scopeAttr != null)
            {
                this.DeploymentType = scopeAttr.DeploymentType;
                ScopePath           = scopeAttr.ScopePath;
                ScopeResourceType   = scopeAttr.ResourceType;
            }
        }