14 references to IsUnixLikePlatform
Microsoft.CodeAnalysis (12)
CommandLine\CommonCompiler.CompilerEmitStreamProvider.cs (1)
72if (PathUtilities.IsUnixLikePlatform)
CommandLine\SarifErrorLogger.cs (1)
149if (!PathUtilities.IsUnixLikePlatform)
FileSystem\PathUtilities.cs (8)
155return GetDirectoryName(path, IsUnixLikePlatform); 213return GetPathRoot(path, IsUnixLikePlatform); 355if (!IsUnixLikePlatform) 386if (IsUnixLikePlatform) 410Debug.Assert(!IsUnixLikePlatform); 704return IsUnixLikePlatform 769if (!IsUnixLikePlatform && IsDriveRootedAbsolutePath(filePath)) 869bool isDriveRooted = !IsUnixLikePlatform && IsDriveRootedAbsolutePath(p);
RuleSet\RuleSetInclude.cs (1)
95if (resolvedIncludePath == null && PathUtilities.IsUnixLikePlatform)
StrongName\DesktopStrongNameProvider.cs (1)
193catch (MarshalDirectiveException) when (PathUtilities.IsUnixLikePlatform)
Microsoft.CodeAnalysis.CSharp (2)
CommandLine\CSharpCommandLineParser.cs (2)
74DebugInformationFormat debugInformationFormat = PathUtilities.IsUnixLikePlatform ? DebugInformationFormat.PortablePdb : DebugInformationFormat.Pdb; 826debugInformationFormat = PathUtilities.IsUnixLikePlatform ? DebugInformationFormat.PortablePdb : DebugInformationFormat.Pdb;