public void Initialize(IModuleConfiguration config)
 {
     if (config == null)
     {
         throw new ArgumentNullException(nameof(config));
     }
     
     config.FilePreProcessor<CompileOnlyOptionFilePreProcessor>();
 }
        public void Initialize(IModuleConfiguration config)
        {
            if (config == null)
            {
                throw new ArgumentNullException(nameof(config));
            }

            config.FilePreProcessor <CompileOnlyOptionFilePreProcessor>();
        }