Dotnet
Implement log monitoring with Seq and Serilog in .net Core
we are going to take a look at installing Seq and configuring our application to use Serilog to send our logs and use Seq to review our log details
How services work in Dapr
how to implement services and invoke them from other applications, which can be either aware of Dapr as they rely on its SDK or unaware of the presence of Dapr as they just invoke a local HTTP endpoint
How to create project templates in .net core
The simplicity of the .net core packing and publishing tool, enables you simply use what you’re already doing to make doing what you’re already doing faster. No need to learn a new complex template language.
Implementing logging with Serilog
ASP.NET Core includes some basic logging providers, but to get the most out of it you’ll need to plug in a full logging framework like Serilog – simple .NET logging with fully-structured events.
Getting started with .net core microservices with dapr
Dapr is an event-driven, portable runtime created by Microsoft as an open source initiative. Due to the fact that Dapr is event-driven it plays an important role in microservices as the applications can be designed to efficiently react to events from external systems or other parts of the solution, and also produce events in order to inform other services of new facts to continue their processing.
Implementing logging in .net core applications for logging, telemetry and your own sanity
Logging and monitoring is an essential strategy when developing Microservices, it will help your team to resolve issues and bugs quicker. The issue is that developers generally don’t like polluting their code base with logging statements. Find out how to achieve a great balance by making use of Attributes and Middleware.
How to use Cake with Rider
Cake is a build automation system for .NET Developers to script their build processes using a C# Domain Specific Language (DSL). In this post, we’ll explore the benefits of Cake and its major features with a concrete working example to achieve a flexible, maintainable, automated build process.
Developing Api’s using Http Endpoints
MVC Controllers are essentially an anti-pattern. They’re dinosaurs. They are collections of methods that never call one another and rarely operate on the same state. They’re not cohesive.
How to generate PostgreSQL UUID with EF Core
How to guide to enable EF Core to auto generate UUID/GUID for postgreSQL databases
The Continuous Integration Check-In Dance
developing software and working with a build or integration server, there are certain conventions that one should follow when making updates to the shared codebase
Singleton Design Pattern C# .net core
The singleton pattern is a design pattern that restricts the instantiation of a class to one object.
The Prototype Design Pattern C# .net core
The Prototype Design Pattern is one of the Creational Design Patterns defined by the Gang Of Four (GOF) published their book Design Patterns: Elements of Reusable Object-Oriented Software in which they presented a catalog of simple and succinct solutions to commonly occurring design problems.
Starting a new project with Orchard Core
Orchard Core is a redevelopment of the free, open source, community-focused Content Management System built on the ASP.NET MVC platform.
Building Custom Entity Recongnition with AWS Comprehend – Part 1
We take a look at using AWS Comprehend to start developing a Custom Name Entity Recognition utility to re-use in our software projects
The Builder Pattern .net core
Builder Pattern is useful for encapsulating and abstracting the creation of objects. It is distinct from the more common Factory Pattern because the Builder Pattern contains methods of customising the creation of an object.
Using Serverless Framework Environment Variables .net core Lambda
How to create and use Serverless Framework Environment variables in AWS .net core lambdas
Serverless AWS Lambda Dependency Injection
walk-through on how to implement full-blown Dependency Injection, Configuration and even make use of IHost functionality in your AWS Lambda projects.
Simple Dependency Injection In AWS Lambda .net core
- Book Review: Continuous Architecture in Practice - March 20, 2023
- Book Review: Escaping the Build Trap - March 2, 2023
- How to create Github profile page - February 26, 2023
I’ve previously discussed how to develop a .net core AWS Lambda with the serverless framework to provide an abstraction over the underlying operating system and… Read More »Simple Dependency Injection In AWS Lambda .net core
Making API calls with HttpClientFactory in Console applications
- Book Review: Continuous Architecture in Practice - March 20, 2023
- Book Review: Escaping the Build Trap - March 2, 2023
- How to create Github profile page - February 26, 2023
.Net Core console applications are by far the most popular applications most developers will routinely develop in order to implement some kind of automation-based task.… Read More »Making API calls with HttpClientFactory in Console applications
- « Previous
- 1
- 2
- 3
- 4
- Next »