xmlresolver / xmlresolvercs

A C# implementation of the XML Resolver
Other
4 stars 3 forks source link

Initial PR for version 2.0.0 #62

Closed ndw closed 1 year ago

ndw commented 1 year ago
  1. Fix #59 by loading assemblies by name rather than searching for them by location
  2. Fix #60 by upgrading to .NET 6
  3. Fix #61 by converting from the WebClient class to the HttpClient instead.

Searching for assemblies by name rather than location is a backwards incompatible change in that the string used to identify a catalog in an assembly is now the AssemblyName rather than the name of the DLL

Upgrading to HttpClient has changed the type of the status code property of the StatusCode in the ResourceConnection class.