Is there a list of all .NET Core gotchas? Can you list some...
I accidentally referenced a .NET Framework (4.5) dll in the csproj of a .NET 6 application.
No warning. Nothing. It just works.
Found the following issue:
https://github.com/dotnet/msbuild/issues/7637
You have a nuget warning for when you reference a .net framework package in .net (core) but nothing from dotnet build/msbuild.
Does anybody know of a blog post or can share experience in all the gotchas for .NET(Core) they have encountered similar to this one?
Another example is the automatic consumption of lower version .NET Core libraries with "no issue" apparently although .NET releases aren't supposed to be fully backward compatible.
No warning. Nothing. It just works.
Found the following issue:
https://github.com/dotnet/msbuild/issues/7637
You have a nuget warning for when you reference a .net framework package in .net (core) but nothing from dotnet build/msbuild.
Does anybody know of a blog post or can share experience in all the gotchas for .NET(Core) they have encountered similar to this one?
Another example is the automatic consumption of lower version .NET Core libraries with "no issue" apparently although .NET releases aren't supposed to be fully backward compatible.
GitHub
Issue Description The build succeeds if you add a .NET Framework project as a dependency of a .NET 6 library. I would have expected that should be forbidden. Steps to Reproduce See the attached sol...
