2 writes to _targetPlatform
Crossgen2Tasks (2)
ResolveReadyToRunCompilers.cs (2)
114if (!ExtractTargetPlatformAndArchitecture(_targetRuntimeIdentifier, out _targetPlatform, out _targetArchitecture) || 145bool isSupportedTarget = ExtractTargetPlatformAndArchitecture(_targetRuntimeIdentifier, out _targetPlatform, out _targetArchitecture);
5 references to _targetPlatform
Crossgen2Tasks (5)
ResolveReadyToRunCompilers.cs (5)
116_targetPlatform != hostPlatform || 148string targetOS = (_targetPlatform == "win") ? "windows" : 150_targetPlatform.StartsWith("linux-", StringComparison.Ordinal) ? "linux" : 151_targetPlatform; 383string targetOSComponent = (_targetPlatform == "win" ? "win" : "unix");