Create an empty ASP.NET Core app:
dotnet new web -o event-displayInside the event-display/csharp folder, update Startup.cs to have a logger to print the contents of the event.
Change the log level in appsettings.json to Information:
{
"Logging": {
"LogLevel": {
"Default": "Information"
}
},
"AllowedHosts": "*"
}Before building the Docker image, make sure the app has no compilation errors:
dotnet buildCreate a Dockerfile for the image.
Back to Hello World Eventing