Skip to content

Commit

Permalink
special case system.servicemodel.primitives (#385)
Browse files Browse the repository at this point in the history
  • Loading branch information
gewarren authored Jul 30, 2024
1 parent a90b1ca commit a440136
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions PackageIndexer/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,13 @@ private static void GenerateCSVFiles(string indexPackagesPath, string csvPath)
}
}

// Special case for System.ServiceModel.Primitives - add version 4.10.3.
// (See https://github.com/dotnet/dotnet-api-docs/pull/10164#discussion_r1696016010.)
AddCsvEntryToDict("netstandard-2.0", csvDictionary, packageCounter,
PackageEntry.Create("System.ServiceModel.Primitives", "4.10.3", "https://github.com/dotnet/wcf", []),
FrameworkEntry.Create("netstandard2.0")
);

// Create the directory.
Directory.CreateDirectory(csvPath);

Expand Down

0 comments on commit a440136

Please sign in to comment.