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
This commit is contained in:
Markus Ewald 2013-07-15 13:46:07 +00:00
parent 9a73838f6c
commit 33e26a93e7

View File

@ -21,6 +21,8 @@ License along with this library
using System;
using System.Collections.Generic;
#if !(WINDOWS_PHONE || XBOX360)
namespace Nuclex.Support.Collections {
/// <summary>Randomly selects between different options, trying to avoid repetition</summary>
@ -281,3 +283,5 @@ namespace Nuclex.Support.Collections {
}
} // namespace Nuclex { namespace Support { namespace Collections
#endif // !(WINDOWS_PHONE || XBOX360)