From 33e26a93e755357ae0c7fcc265933350ca800531 Mon Sep 17 00:00:00 2001 From: Markus Ewald Date: Mon, 15 Jul 2013 13:46:07 +0000 Subject: [PATCH] Disabled Variegator completely on Windows Phone and Xbox 360 because those outdated .NET frameworks don't have sets (ISet) git-svn-id: file:///srv/devel/repo-conversion/nusu@289 d2e56fa2-650e-0410-a79f-9358c0239efd --- Source/Collections/Variegator.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/Collections/Variegator.cs b/Source/Collections/Variegator.cs index 07aab4b..711138e 100644 --- a/Source/Collections/Variegator.cs +++ b/Source/Collections/Variegator.cs @@ -21,6 +21,8 @@ License along with this library using System; using System.Collections.Generic; +#if !(WINDOWS_PHONE || XBOX360) + namespace Nuclex.Support.Collections { /// Randomly selects between different options, trying to avoid repetition @@ -281,3 +283,5 @@ namespace Nuclex.Support.Collections { } } // namespace Nuclex { namespace Support { namespace Collections + +#endif // !(WINDOWS_PHONE || XBOX360)