mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
621 B
25 lines
621 B
// Copyright (c) 2010 AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt) |
|
// This code is distributed under MIT license (for details please see \doc\license.txt) |
|
|
|
using System; |
|
|
|
namespace ICSharpCode.NRefactory.Utils |
|
{ |
|
/// <summary> |
|
/// Platform-specific code. |
|
/// </summary> |
|
static class Platform |
|
{ |
|
public static StringComparer FileNameComparer { |
|
get { |
|
switch (Environment.OSVersion.Platform) { |
|
case PlatformID.Unix: |
|
case PlatformID.MacOSX: |
|
return StringComparer.Ordinal; |
|
default: |
|
return StringComparer.OrdinalIgnoreCase; |
|
} |
|
} |
|
} |
|
} |
|
}
|
|
|