Giorgi / EntityFramework.Exceptions

Strongly typed exceptions for Entity Framework Core. Supports SQLServer, PostgreSQL, SQLite, Oracle and MySql.
https://giorgi.dev/entity-framework/introducing-entityframework-exceptions/
Other
1.44k stars 68 forks source link

Strong-named assembly #47

Closed petarpetrovt closed 2 years ago

petarpetrovt commented 2 years ago

Warning CS8002 Referenced assembly 'EntityFramework.Exceptions.SqlServer, Version=6.0.3.0, Culture=neutral, PublicKeyToken=null' does not have a strong name. Warning CS8002 Referenced assembly 'EntityFramework.Exceptions.Common, Version=6.0.3.0, Culture=neutral, PublicKeyToken=null' does not have a strong name.

Giorgi commented 2 years ago

According to Why strong-name your assemblies?

For .NET Core and .NET 5+, strong-named assemblies do not provide material benefits. The runtime never validates the strong-name signature, nor does it use the strong-name for assembly binding.

This library targets .Net 6 so there is no sense in strong naming the assemblies.