Hello, using VS2010 I am not getting the compilation warnings I used to get with VS2008.

For example:

float x=1.0;

...would cause a warning in VS2008 because I didn't append an 'f' like so: x=1.0f;

Also, I increased the warning level to 4 under Project->Properties->Configuration Properties/C++ and that gives me additional warnings (but not the warning I detailed above) when I build the whole project but not when I simply compile a file, which is annoying.

Can I set it up so it's similar to the way it used to be ?

Thanks.