1 write to _targetFramework
Microsoft.NET.Build.Tasks (1)
ResolvePackageAssets.cs (1)
727
_targetFramework
= task.TargetFramework;
10 references to _targetFramework
Microsoft.NET.Build.Tasks (10)
ResolvePackageAssets.cs (10)
744
_compileTimeTarget = _lockFile.GetTargetAndReturnNullIfNotFound(
_targetFramework
, runtimeIdentifier: null);
745
_runtimeTarget = _lockFile.GetTargetAndReturnNullIfNotFound(
_targetFramework
, runtimeIdentifier: _task.EffectiveRuntimeIdentifier);
759
_compileTimeTarget = _lockFile.GetTargetAndThrowIfNotFound(
_targetFramework
, runtimeIdentifier: null);
760
_runtimeTarget = _lockFile.GetTargetAndThrowIfNotFound(
_targetFramework
, runtimeIdentifier: _task.EffectiveRuntimeIdentifier);
1388
runtimeTarget = _lockFile.GetTargetAndReturnNullIfNotFound(
_targetFramework
, runtimeIdentifier) ?? new LockFileTarget();
1392
runtimeTarget = _lockFile.GetTargetAndThrowIfNotFound(
_targetFramework
, runtimeIdentifier);
1418
var targetFramework = _lockFile.GetTargetAndThrowIfNotFound(
_targetFramework
, null).TargetFramework;
1651
var tfm = _lockFile.GetTargetAndThrowIfNotFound(
_targetFramework
, null).TargetFramework;
1668
var tfm = _lockFile.GetTargetAndThrowIfNotFound(
_targetFramework
, null).TargetFramework;
1747
_lockFile.GetLockFileTargetAlias(_lockFile.GetTargetAndReturnNullIfNotFound(
_targetFramework
, null))))