1 write to _targetFramework
Microsoft.NET.Build.Tasks (1)
ResolvePackageAssets.cs (1)
724
_targetFramework
= task.TargetFramework;
10 references to _targetFramework
Microsoft.NET.Build.Tasks (10)
ResolvePackageAssets.cs (10)
741
_compileTimeTarget = _lockFile.GetTargetAndReturnNullIfNotFound(
_targetFramework
, runtimeIdentifier: null);
742
_runtimeTarget = _lockFile.GetTargetAndReturnNullIfNotFound(
_targetFramework
, runtimeIdentifier: _task.EffectiveRuntimeIdentifier);
756
_compileTimeTarget = _lockFile.GetTargetAndThrowIfNotFound(
_targetFramework
, runtimeIdentifier: null);
757
_runtimeTarget = _lockFile.GetTargetAndThrowIfNotFound(
_targetFramework
, runtimeIdentifier: _task.EffectiveRuntimeIdentifier);
1385
runtimeTarget = _lockFile.GetTargetAndReturnNullIfNotFound(
_targetFramework
, runtimeIdentifier) ?? new LockFileTarget();
1389
runtimeTarget = _lockFile.GetTargetAndThrowIfNotFound(
_targetFramework
, runtimeIdentifier);
1415
var targetFramework = _lockFile.GetTargetAndThrowIfNotFound(
_targetFramework
, null).TargetFramework;
1648
var tfm = _lockFile.GetTargetAndThrowIfNotFound(
_targetFramework
, null).TargetFramework;
1665
var tfm = _lockFile.GetTargetAndThrowIfNotFound(
_targetFramework
, null).TargetFramework;
1744
_lockFile.GetLockFileTargetAlias(_lockFile.GetTargetAndReturnNullIfNotFound(
_targetFramework
, null))))