I come come across compelling evidence that Whidbey will natively support Unix.
System.PlatformId in 1.1
namespace System
{
public enum PlatformID
{
// Fields
Win32NT = 2,
Win32S = 0,
Win32Windows = 1,
WinCE = 3
}
}
System.PlatformId in 2.0
namespace System
{
public enum PlatformID
{
// Fields
Unix = 4,
Win32NT = 2,
Win32S = 0,
Win32Windows = 1,
WinCE = 3
}
}