Concordion.Internal.SpecificationConfig.SpecificationConfig C# (CSharp) Method

SpecificationConfig() public method

public SpecificationConfig ( ) : System
return System
        public SpecificationConfig()
        {
            this.BaseInputDirectory = null; //a value of null indicates that specifications are embedded in DLL file
            this.BaseOutputDirectory = Environment.GetEnvironmentVariable("TEMP");
            this.SpecificationFileExtensions = new List<string> {"html"};
            this.ConcordionExtensions = new Dictionary<string, string>();
        }
SpecificationConfig