RDS Snapshots using C#

Introduction Recently, I had to work on a task to take AWS RDS snapshots using C#  programmatically. It looks pretty straightforward, but unfortunately it was not. So, I had to do some research on this and finally came across a simple solution using AWS SDK. Here, I’m going to give you some idea on how…

Git operations with C#

Introduction to Git operations with C# Sometimes we may need to accomplish some git related operations using .NET. It can be a console application or another service. Regardless of the application type that we are using, we may need to do some git operations from basic level to some advanced level. In this situation, LibGit2Sharp…