dazinator / DotNet.Glob

A fast globbing library for .NET / .NETStandard applications. Outperforms Regex.
MIT License
363 stars 27 forks source link

The nuget package have no strong name #45

Closed edwardmeng closed 6 years ago

edwardmeng commented 6 years ago

I'm getting error: System.IO.FileLoadException: 'Could not load file or assembly 'DotNet.Glob, Version=2.0.1.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. A strongly-named assembly is required. How I can use your package now? Or when will you fix it?

edwardmeng commented 6 years ago

I have copied the source code instead of package reference until the nuget package strongly-named.

dazinator commented 6 years ago

Fixed as of 2.0.3 which will appear on nuget shortly (if not already). Thanks for reporting.

dazinator commented 6 years ago

and FYI, If you wanted to continue to build from source, as of the latest commit, Debug builds should work as normal and produce a non-signed assembly.. However Release builds now expect to find a DotNet.Glob.snk key file in the repo root directory which it will use to sign the assemblies. This is not checked in, so you would have to create your own key file or disable assembly signing in that case.