1 write to Version
Microsoft.DotNet.Build.Tasks.Packaging (1)
GeneratePackageReport.cs (1)
366Version = packageItem.Version
6 references to Version
Microsoft.DotNet.Build.Tasks.Packaging (6)
ValidateFrameworkPackage.cs (2)
62if (!packageInfo.InboxOn.IsInbox(fx, testAsset.Version)) 64logMissingInbox($"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)
276referenceAssemblyVersion = referenceAssembly.Version; 305Version implementationVersion = implementationAssembly.Version; 388var allAssemblies = allDlls.Where(f => f.Version != null); 389var assemblyVersions = new HashSet<Version>(allAssemblies.Select(f => VersionUtility.As4PartVersion(f.Version)));