What I am trying to do I have a backend ASP.Net Core Web API hosted on an Azure Free Plan (Source Code: https://github.com/killerrin/Portfolio-Backend). I also have a Client Website...
  • May 18, 2022
  • 0 Comments
I have an ASP.NET core project and I’m getting this error when I try to build it: error TS18003: Build:No inputs were found in config file 'Z:/Projects/client/ZV/src/ZV/Scripts/tsconfig.json'. Specified 'include'...
  • May 17, 2022
  • 0 Comments
In appsettings.json { "MyArray": [ "str1", "str2", "str3" ] } In Startup.cs public void ConfigureServices(IServiceCollection services) { services.AddSingleton<IConfiguration>(Configuration); } In HomeController public class HomeController : Controller { private readonly...
  • May 17, 2022
  • 0 Comments
When I run PM> Remove-Migration -context BloggingContext in VS2015 with an ASP.NET Core project using EF Core I get the following error: System.InvalidOperationException: The migration '20160703192724_MyFirstMigration' has already been...
  • May 14, 2022
  • 0 Comments
I’m relatively new at .NET, and I decided to tackle .NET Core instead of learning the “old ways”. I found a detailed article about setting up AutoMapper for .NET...
  • May 12, 2022
  • 0 Comments