At the beginning of
\Microsoft.Cpp\v4.0\Platforms\Win32\PlatformToolsets\v90\Microsoft.Cpp.Win32.v90.props it has:
<Import Project="$(VCTargetsPath)\Platforms\Win32\ImportBefore\*.v90.props" Condition="Exists('$(VCTargetsPath)\Platforms\Win32\ImportBefore')" />
But anything in that path has already been included in:
Microsoft.Cpp\v4.0\Platforms\Win32\Microsoft.Cpp.Win32.props via:
<Import Project="$(VCTargetsPath)\Platforms\Win32\ImportBefore\*.props" Condition="Exists('$(VCTargetsPath)\Platforms\Win32\ImportBefore')" />
The import in Microsoft.Cpp.Win32.v90.props is probably better off as:
<Import Project="$(VCTargetsPath)\Platforms\Win32\PlatformToolsets \ImportBefore\*.v90.props" Condition="Exists('$(VCTargetsPath)\Platforms\Win32\ImportBefore')" />
The same issue exists in Microsoft.Cpp.Win32.V100.props
Steve
- Moved byWesley YaoMSFTThursday, October 29, 2009 2:31 AM (From:MSBuild)
-