User Secrets
User secrets are a new concept in ASP.NET 5 which provide a way to use configuration values that are outside of the set of files that would be check into version control. An example of a good use case...
View ArticleASP.NET 5 Web Site to Azure
At the point the basics of my ASP.NET 4 contacts application have been moved to the ASP.NET 5. This is never going to be a production application, but I want it run it on a remote server just to prove...
View ArticleConfiguration in ASP.NET 5
ASP.NET 5 offer a lot of options for loading configuration data such as json files, ini files, XML files, in memory collections, command line arguments, user secrets and environment variables. The...
View ArticleEmails using Mailgun in ASP.NET Core
Updated version of this post can be found here. At last month’s Nashville .Net Users Group meeting Michael McCann when over some of the aspects of ASP.NET’s membership provider (non-core version). One...
View ArticleSMS using Twilio Rest API in ASP.NET Core
A couple of weeks ago I went over using email in ASP.NET Core which left the provided MessageService class half implemented. This post is going to cover the implementation of the other MessageService...
View ArticleEmail with ASP.NET Core Using Mailgun
Sending emails from ASP.NET Core using Mailgun is a topic I covered in this post almost a year ago. The previous post was before ASP.NET Core hit 1.0 and I didn’t save or upload the code to GitHub....
View Article