Skip to content

Commit a742610

Browse files
prathikrPrathik Rao
andauthored
foundry local packaging pipeline bug fix (#569)
fixes issue with xml comments in c# sdk: ``` Foundry-Local\sdk\cs\src\ICatalog.cs(62,73): error CS1573: Parameter 'ct' has no matching param tag in the XML comment for 'ICatalog.GetLatestVersionAsync(IModel, CancellationToken?)' (but other parameters do) ``` --------- Co-authored-by: Prathik Rao <prathikrao@microsoft.com>
1 parent da088d0 commit a742610

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

sdk/cs/src/ICatalog.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ public interface ICatalog
5858
/// This is used to check if a newer version of a model is available in the catalog for download.
5959
/// </summary>
6060
/// <param name="model">The model to check for the latest version.</param>
61+
/// <param name="ct">Optional CancellationToken.</param>
6162
/// <returns>The latest version of the model. Will match the input if it is the latest version.</returns>
6263
Task<IModel> GetLatestVersionAsync(IModel model, CancellationToken? ct = null);
6364
}

0 commit comments

Comments
 (0)