MacSummer/make-it-so

Inherited values

Opened this issue · 0 comments

since the project is not maintained, just a tip. If you want to support any 
inherited values (from property sheets, for example) just replace the use of 
VCConfig.Evaluate with IVCRulePropertyStorage.GetEvaluatedPropertyValue

like:IVCRulePropertyStorage rule = 
(IVCRulePropertyStorage)vcConfiguration.Rules.Item("CL");
string strAdditionalIncludeDirectories = 
rule.GetEvaluatedPropertyValue("AdditionalIncludeDirectories");
for getting all additional include directories

Original issue reported on code.google.com by kreuzerk...@gmail.com on 29 Oct 2014 at 1:30