diff --git a/docs/azure/includes/dotnet-all.md b/docs/azure/includes/dotnet-all.md index 40ff15b548c4d..4ec3401e6eabe 100644 --- a/docs/azure/includes/dotnet-all.md +++ b/docs/azure/includes/dotnet-all.md @@ -559,7 +559,7 @@ | Microsoft.Azure.Functions.Worker.Grpc | NuGet [2.0.0](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Grpc/2.0.0) | | | | Microsoft.Azure.Functions.Worker.ItemTemplates | NuGet [4.0.5086](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.ItemTemplates/4.0.5086) | | | | Microsoft.Azure.Functions.Worker.ProjectTemplates | NuGet [4.0.5086](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.ProjectTemplates/4.0.5086) | | | -| Microsoft.Azure.Functions.Worker.Sdk | NuGet [2.0.4](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Sdk/2.0.4) | | | +| Microsoft.Azure.Functions.Worker.Sdk | NuGet [2.0.5](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Sdk/2.0.5) | | | | Microsoft.Azure.Functions.Worker.Sdk.Analyzers | NuGet [1.2.2](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Sdk.Analyzers/1.2.2) | | | | Microsoft.Azure.Functions.Worker.Sdk.Generators | NuGet [1.3.5](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Sdk.Generators/1.3.5) | | | | Microsoft.Azure.WebJobs.CosmosDb.ChangeProcessor | NuGet [1.0.4](https://www.nuget.org/packages/Microsoft.Azure.WebJobs.CosmosDb.ChangeProcessor/1.0.4) | | | diff --git a/docs/standard/commandline/migration-guide-2.0.0-beta5.md b/docs/standard/commandline/migration-guide-2.0.0-beta5.md index 360e219c4937f..140ea67de6604 100644 --- a/docs/standard/commandline/migration-guide-2.0.0-beta5.md +++ b/docs/standard/commandline/migration-guide-2.0.0-beta5.md @@ -202,7 +202,7 @@ rootCommand.SetAction(ParseResult parseResult => In the past, the `CancellationToken` passed to `InvokeAsync` was exposed to handler via a method of `InvocationContext`: ```csharp -rootCommand.SetHandler(async (InvocationCotnext context) => +rootCommand.SetHandler(async (InvocationContext context) => { string? urlOptionValue = context.ParseResult.GetValueForOption(urlOption); var token = context.GetCancellationToken();