Hi,
I would like to know the difference between the Team version & Pro, for the
profile optimization
It seem to me that the Pro version include this feature for the C++ not
managed, but the Team version proposes
in more one visualization of information (number of call, timing, ...)
concerning the profiling whereas in the Pro version is
directly used by the Linker.
regards,

Difference in VS2005 between Team & Pro version for the profiling
annemarie
Profile guided optimization is a feature of the C++ compiler, available in Visual Studio Professional and above and is for native code only.
Visual studio team system also includes sampling and instrumenting profilers for native and managed code, but these are not tied into compiler optimizations. Rather, they're traditional profilers that show you where your program is spending it's time.
Despite the similar names, these are completely different and independent features.