1 write to Version
Microsoft.DotNet.Build.Tasks.Packaging (1)
GeneratePackageReport.cs (1)
366
Version
= packageItem.Version
6 references to Version
Microsoft.DotNet.Build.Tasks.Packaging (6)
ValidateFrameworkPackage.cs (2)
62
if (!packageInfo.InboxOn.IsInbox(fx, testAsset.
Version
))
64
logMissingInbox($"File {name}, version {testAsset.
Version
} was included framework package {_report.Id}/{_report.Version} but that version is not considered inbox in package index {string.Join(";", _index.IndexSources)}. Please add it with appropriate {nameof(PackageInfo.InboxOn)} entry for {Framework} or suppress this message with {nameof(Suppression.PermitInbox)} suppression.");
ValidatePackage.cs (4)
276
referenceAssemblyVersion = referenceAssembly.
Version
;
305
Version implementationVersion = implementationAssembly.
Version
;
388
var allAssemblies = allDlls.Where(f => f.
Version
!= null);
389
var assemblyVersions = new HashSet<Version>(allAssemblies.Select(f => VersionUtility.As4PartVersion(f.
Version
)));