Merge pull request #3809 from lateralusX/jlorenss/win-api-family-support-cleanup
[mono.git] / mcs / class / corlib / System / Environment.cs
index 19d17929c54a552b07f4b16c4f587d6aba2ef421..c8b87782310327f36d1ffe0fbca382f0431c1987 100644 (file)
@@ -57,7 +57,7 @@ namespace System {
                 * of icalls, do not require an increment.
                 */
 #pragma warning disable 169
-               private const int mono_corlib_version = 160;
+               private const int mono_corlib_version = 163;
 #pragma warning restore 169
 
                [ComVisible (true)]
@@ -1040,6 +1040,15 @@ namespace System {
                        // Do not include a trailing newline for backwards compatibility
                        return st.ToString( System.Diagnostics.StackTrace.TraceFormat.Normal );
                }
+
+               // Copied from referencesource Environment
+               internal static bool IsWinRTSupported
+               {
+                       get
+                       {
+                               return true;
+                       }
+               }
        }
 }