public static CompilerToolWrapper Create(VCFileConfiguration config)
        {
            CompilerToolWrapper wrapper = null;

            try {
                wrapper = new CompilerToolWrapper(config.Tool);
            } catch {
            }

            return(wrapper.IsNull() ? null : wrapper);
        }
        public static CompilerToolWrapper Create(VCPropertySheet sheet)
        {
            CompilerToolWrapper wrapper = null;

            try {
                wrapper = new CompilerToolWrapper(((IVCCollection)sheet.Tools)
                                                  .Item("VCCLCompilerTool"));
            } catch {
            }

            return(wrapper.IsNull() ? null : wrapper);
        }
        public static CompilerToolWrapper Create(VCConfiguration config)
        {
            CompilerToolWrapper wrapper = null;

            try {
                wrapper = new CompilerToolWrapper(((IVCCollection)config.Tools)
                                                  .Item("VCCLCompilerTool"));
            } catch {
            }

            return(wrapper.IsNull() ? null : wrapper);
        }