예제 #1
0
        private void DefineConstants(CompilerService compilerSvc)
        {
            var definitions = GetWorkingConfig()["preprocessor.define"]?.Split(',') ?? new string[0];

            foreach (var val in definitions)
            {
                compilerSvc.DefinePreprocessorValue(val);
            }
        }