MacSummer / make-it-so

Automatically exported from code.google.com/p/make-it-so
1 stars 0 forks source link

Inherited values #40

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
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