For statistic tracking, I'd like to be able to tell if the application is running on Windows RT or Windows Pro.
This thread says that there's no way to get the system version info:
Get OS-Version in WinRT Metro App C#
Any ideas?
One thing you could do is to go to Configuration Manager in Visual Studio and instead of the default Any CPU configuration - create separate ARM/x86/x64 configurations and in project properties/Conditional compilation symbols define a symbol that is different for ARM vs. x86/x64 configurations. Then you can just test for it in your code using #if #else #endif preprocessor directives.