Skip to content

Commit a440136

Browse files
authored
special case system.servicemodel.primitives (#385)
1 parent a90b1ca commit a440136

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

PackageIndexer/Program.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,13 @@ private static void GenerateCSVFiles(string indexPackagesPath, string csvPath)
161161
}
162162
}
163163

164+
// Special case for System.ServiceModel.Primitives - add version 4.10.3.
165+
// (See https://github.com/dotnet/dotnet-api-docs/pull/10164#discussion_r1696016010.)
166+
AddCsvEntryToDict("netstandard-2.0", csvDictionary, packageCounter,
167+
PackageEntry.Create("System.ServiceModel.Primitives", "4.10.3", "https://github.com/dotnet/wcf", []),
168+
FrameworkEntry.Create("netstandard2.0")
169+
);
170+
164171
// Create the directory.
165172
Directory.CreateDirectory(csvPath);
166173

0 commit comments

Comments
 (0)