I have read about the difference between .NET Standard and .NET Core, but I really don’t know what the difference is, or when to choose a .NET Standard library...
  • May 19, 2022
  • 0 Comments
What is the difference between .NET Core and Mono? I found a statement on the official site that said: “Code written for it is also portable across application stacks,...
  • May 16, 2022
  • 0 Comments
Since dotnet core moved back to the .csproj format, there is a new autogenerated MyProject.AssemblyInfo.cs which contains, among others: [assembly: AssemblyCompany("MyProject")] [assembly: AssemblyVersion("1.0.0.0")] Note that this is automatically regenerated...
  • May 15, 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
Recently in an official .NET Framework Blog it was announced that .NET Core is going open source. Ironically, the author mentions that what .NET Core is will be explained...
  • May 13, 2022
  • 0 Comments
I’m following the docs in order to create an initial migration. When I execute dotnet, I get the help section, meaning that the PATH works properly. Then I try...
  • May 11, 2022
  • 0 Comments
I know that for older versions of .NET, you can determine if a given version is installed by following https://support.microsoft.com/en-us/kb/318785 Is there an official method of determining if .NET...
  • May 9, 2022
  • 0 Comments