Setting up IIS to run .NET Core Applications 21 May 2019 04:36 Sam MacDonald (0) TweetShareAs I’m getting another IIS Server ready to run a .NET Core Web Application I thought I would document the process so that if someone else wants to get their IIS server configured and serving they can follow along.First off there are lots of options for setting up a .NET Core application, we will not get into those options today they may become another post at a later time.Supported systemsThe following operating systems are supported for running with IIS:Windows 7 or laterWindows Server 2008 R2 ... [More]
.NET Core Microservices eBook and Samples updated to .NET Core 2.2 01 April 2019 01:01 Sam MacDonald (0) TweetShareMicrosoft has updated their Microservices eBook and Samples to version 2.2 of the .NET Core framework.This new version covers the built-in health check features that are now part of the latest release, as well as other updates.Download the new eBook.The reference sample eShopOnContainers has been updated as well.Check it out for ideas and how to implement Microservices in your applications.
Git Commit db.lock error on every commit 05 March 2018 05:51 Sam MacDonald Visual Studio (0) TweetShareWhile working on one of my projects I manually moved some files around and made some changes to the file structure. After doing this I and adding a new project I wanted to commit these new files and structure to Git, I then received this message:“Git failed with a fatal error.error: open(".vs/XXXXXX/v15/Server/sqlite3/db.lock"): Permission denied fatal: Unable to process path .vs/XXXXXX/v15/Server/sqlite3/db.lock”On the first time receiving this error I simply went to my .vs/XXXXXX/v15/Server/sq... [More]