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