Updated the README regarding the C# changes and fixed a typo.

Signed-off-by: Arash Rohani <arash.rohani@gmail.com>
This commit is contained in:
Arash Rohani 2022-05-11 08:32:06 -07:00 committed by Arash Rohani
parent 53aeab771b
commit a7a497d131
1 changed files with 1 additions and 14 deletions

View File

@ -217,7 +217,7 @@ npm install
<!-- END_STEP -->
<!-- STEP
name: Run react frontent
name: Run react front end
working_dir: ./react-form
expected_stdout_lines:
- "You're up and running! Both Dapr and your app logs will appear here."
@ -620,21 +620,8 @@ using Dapr;
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen();
var app = builder.Build();
// Configure the HTTP request pipeline.
if (app.Environment.IsDevelopment())
{
app.UseDeveloperExceptionPage();
app.UseSwagger();
app.UseSwaggerUI();
}
// Dapr configurations
app.UseCloudEvents();