You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 24, 2021. It is now read-only.
RazorAssemblyProvider.cs line 83 only checks the name and not assembly version.
As soon as some nuget references have more modern dependencies you get multiple assemblies like system.runtime which makes the .SingleOrDefault fail.
Steps to Reproduce
.NET 4.7 solution with rancy & razor viewengine - add nuget for sendgrid 9.9.
sendgrid has dependencies for System.Net.Http, which needs
System.Security.Cryptography.X509Certificates
which needs:
System.Security.Cryptography.Algorithms
which needs:
System.Runtime (>= 4.3.0)
which will cause the error as System.runtime 4.0 also is loaded.
Nancy version: 2.0
Nancy host ASP.NET
.NET Framework version: 4.7
The text was updated successfully, but these errors were encountered:
Description
RazorAssemblyProvider.cs line 83 only checks the name and not assembly version.
As soon as some nuget references have more modern dependencies you get multiple assemblies like system.runtime which makes the .SingleOrDefault fail.
Steps to Reproduce
.NET 4.7 solution with rancy & razor viewengine - add nuget for sendgrid 9.9.
sendgrid has dependencies for System.Net.Http, which needs
System.Security.Cryptography.X509Certificates
which needs:
System.Security.Cryptography.Algorithms
which needs:
System.Runtime (>= 4.3.0)
which will cause the error as System.runtime 4.0 also is loaded.
The text was updated successfully, but these errors were encountered: