IdentityUI has a breaking change in .NET Core 3.0 11 September 2019 06:54 Sam MacDonald ASP.NET, .NET Core (0) TweetShareWith ASP.NET Core 3.0, Identity UI was moved to use the new static web assets introduced in this version. With this move there are some breaking changes to be aware of:.AddDefaultUI(UIFramework.Bootstrap4) no longer works.With the new change Bootstrap 4 is now the default UI Framework for use with Identity UI. If you are in need of using an older version of the framework then this can be done by using the IdentityUIFrameworkVersion property in your project file.The overload for AddIdentityUI tha... [More]
HTTP Error 500.30–ANCM In-Process Start Failure 18 June 2019 10:41 Sam MacDonald .NET Core, ASP.NET, IIS, Windows Server (0) TweetShareWhile preparing an app to run on my local IIS server for the first time I received this error. It provides some clues as to what is happening but does not give a direct cause and can be very frustrating when trying to get that app ready for production.HTTP Error 500.30 - ANCM In-Process Start FailureCommon causes of this issue:The application failed to start The application started but then stopped The application started but threw an exception during startupTroubleshooting steps:Check the sys... [More]
How to serve files without extensions in IIS 17 June 2019 04:53 Sam MacDonald Windows Server, ASP.NET, IIS (0) TweetShareBy default, IIS will not serve up files without an extension. Never the less sometimes we need to allow IIS to serve up these files.The following web.config file can be placed in the directory that you want to serve up these files from.<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <staticContent> &... [More]