Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request mainly involves changes to the
labs/4-Add-Shopping-Basket/README.md
file. The changes are focused on improving the instructions for setting up a gRPC service project, implementing Redis storage logic, and updating the web site to provide a shopping basket feature. The changes include clarifications on where to create and modify files, corrections of typos, and additional instructions for using the .NET CLI.Modifications to instructions:
README.md
: Instructions for setting up a gRPC service project have been updated to include steps for using the .NET CLI. The instructions now specify where to create and modify files in theBasket.API
project. Typos in the template options for creating a new project have been corrected.README.md
: Instructions for implementing Redis storage logic have been updated to specify where to create files in theBasket.API
project. [1] [2]README.md
: Instructions for updating the web site have been updated to specify where to modify files in theWebApp
project. [1] [2]Code corrections and improvements:
README.md
: A typo in theCustomerBasket
class definition has been corrected.README.md
: TheAddApplicationServices
method inHostingExtensions.cs
has been updated to register theRedisBasketStore
class in the application's DI container.README.md
: TheHostingExtensions.cs
file has been updated to register theBasket.BasketClient
gRPC client in the application's DI container and configure itsAddress
property.Other changes:
README.md
: Thewebapp
resource has been updated to reference thebasket-api
resource.