AbpIoAzureDevops.AbpIoAzureDevopsGlobalFeatureConfigurator.Configure C# (CSharp) Method

Configure() public static method

public static Configure ( ) : void
return void
        public static void Configure()
        {
            OneTimeRunner.Run(() =>
            {
                /* You can configure (enable/disable) global features of the used modules here.
                 *
                 * YOU CAN SAFELY DELETE THIS CLASS AND REMOVE ITS USAGES IF YOU DON'T NEED TO IT!
                 *
                 * Please refer to the documentation to lear more about the Global Features System:
                 * https://docs.abp.io/en/commercial/latest/Global-Features
                 */
            });
        }
    }

Usage Example

 public override void PreConfigureServices(ServiceConfigurationContext context)
 {
     AbpIoAzureDevopsGlobalFeatureConfigurator.Configure();
     AbpIoAzureDevopsModuleExtensionConfigurator.Configure();
 }
AbpIoAzureDevopsGlobalFeatureConfigurator