In a few Windows 8 App code samples I’ve seen code blocks encapsulated by these preprocessor instructions
#if !WINRT_NOT_PRESENT
#endif
Is WinRT not always present in Windows 8 Store apps?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This is used by Microsoft’s NotificationsExtensions library. You need to specify this build symbol if you want to use ASP.NET to send push notifications to Windows Push Notification Services (WNS).
From Quickstart: Using the NotificationsExtensions library in your code (Windows):