Taritsyn/BundleTransformer

Need BundleTransformer.NUglify new package release

jzabroski opened this issue · 2 comments

See my comments here: beb83bd#r67181806

Hello, John!

This problem has been resolved in version 1.12.46.

Basically, you could use the following command to update the package:

nuget update "PATH-TO-CSPROJ-FILE" -Id NUglify -Version 1.17.8

In case of an error “Could not load file or assembly 'NUglify, Version=1.17.3.0, Culture=neutral, PublicKeyToken=15bc7810aec21b5e' or one of its dependencies. …”, add the following setting to the Web.config file:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  …
  <runtime>
    …
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      …
      <dependentAssembly>
        <assemblyIdentity name="NUglify" publicKeyToken="15bc7810aec21b5e" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-1.17.8.0" newVersion="1.17.8.0" />
      </dependentAssembly>
      …
    </assemblyBinding>
    …
  </runtime>
  …
</configuration>

@Taritsyn Agree, it is resolved. Closing this. TIL that Nuget chooses the lowest applicable version for transitive references, in order to, for example, avoid upgrading someone into a zero day exploit.