3 writes to RuntimeAssets
Microsoft.DotNet.Build.Tasks.Packaging (2)
GeneratePackageReport.cs (1)
145
RuntimeAssets
= runtimeAssets.Select(r => GetPackageAssetFromTargetPath(r)).ToArray(),
PackageReport.cs (1)
116
CompileAssets =
RuntimeAssets
= NativeAssets = s_emptyPackageAsset;
Microsoft.DotNet.Build.Tasks.Packaging.Tests (1)
ValidateHarvestVersionIsLatestForReleaseTests.cs (1)
96
RuntimeAssets
= new PackageAsset[]
11 references to RuntimeAssets
Microsoft.DotNet.Build.Tasks.Packaging (11)
GetApplicableAssetsFromPackageReports.cs (2)
80
runtimeAssets.AddRange(target.
RuntimeAssets
.Select(r => ItemFromApplicableAsset(r, report.Id, report.Version)));
81
buildProjects.AddRange(target.
RuntimeAssets
.Select(r => r.SourceProject).Where(bp => bp != null));
GetLayoutFiles.cs (1)
106
layoutFiles.AddRange(CreateLayoutFiles(target.
RuntimeAssets
, $"runtimes\\{rid}\\lib\\{fxFolder}", "Runtime"));
PackageReport.cs (2)
127
public bool ShouldSerializeRuntimeAssets() { return
RuntimeAssets
!= null &&
RuntimeAssets
.Length != 0; }
ValidateFrameworkPackage.cs (1)
97
return string.IsNullOrEmpty(Runtime) ? target.CompileAssets : target.
RuntimeAssets
;
ValidateHarvestVersionIsLatestForRelease.cs (1)
83
foreach (PackageAsset runtimeAsset in packageTarget.Value.
RuntimeAssets
.NullAsEmpty())
ValidatePackage.cs (4)
143
var allRuntimeGenerations = _report.Targets.Values.SelectMany(t => t.
RuntimeAssets
.NullAsEmpty())
202
var runtimeAssetPaths = runtimeTarget.
RuntimeAssets
.Select(ra => ra.PackagePath);
300
var implementationAssemblies = runtimeTarget.
RuntimeAssets
.Where(ra => IsDll(ra.PackagePath));
387
var allDlls = _report.Targets.Values.SelectMany(t => t.CompileAssets.NullAsEmpty().Concat(t.
RuntimeAssets
.NullAsEmpty()));