6 writes to Include
Microsoft.DotNet.Build.Tasks.Feed (1)
src\SigningInformationModelFactory.cs (1)
76var fileSignInfoModel = new FileSignInfoModel { Include = Path.GetFileName(signInfo.ItemSpec), CertificateName = attributes["CertificateName"] };
Microsoft.DotNet.VersionTools.Tests (5)
BuildManifest\ManifestModelTests.cs (5)
156Include = infos[i * 4], 180Include = "Microsoft.DiaSymReader.dll", 187Include = "Microsoft.DiaSymReader.dll", 729Include = "Dll.dll", 734Include = "Another.dll",
15 references to Include
Microsoft.DotNet.Build.Tasks.Feed.Tests (4)
BuildModelFactoryTests.cs (4)
503item.Include.Should().Be("Microsoft.DiaSymReader.dll"); 510item.Include.Should().Be("Microsoft.DiaSymReader.dll"); 517item.Include.Should().Be("test-package-a.1.0.0.nupkg"); 669item.Include.Should().Be("test-package-a.1.0.0.nupkg");
Microsoft.DotNet.VersionTools (11)
BuildManifest\Model\SigningInformationModel.cs (5)
45.OrderBy(f => f.Include, StringComparer.OrdinalIgnoreCase) 119nameof(Include), 126get { return Attributes.GetOrDefault(nameof(Include)); } 127set { Attributes[nameof(Include)] = value; } 148public override string ToString() => $"File \"{Include}\" is signed with {CertificateName}";
BuildManifest\Model\SigningInformationParsingExtensions.cs (6)
84if (signInfo.Include.IndexOfAny(new[] { '/', '\\' }) >= 0) 86throw new ArgumentException($"FileSignInfo should specify file name and extension, not a full path: '{signInfo.Include}'"); 91throw new ArgumentException($"TargetFramework metadata of FileSignInfo '{signInfo.Include}' is invalid: '{signInfo.TargetFramework}'"); 96throw new ArgumentException($"CertificateName metadata of FileSignInfo '{signInfo.Include}' should be non-empty."); 101throw new ArgumentException($"PublicKeyToken metadata of FileSignInfo '{signInfo.Include}' is invalid: '{signInfo.PublicKeyToken}'"); 104string key = $"{signInfo.Include}/{signInfo.TargetFramework}/{signInfo.PublicKeyToken?.ToLower()}";