SamSaffron / MiniProfiler

A simple but effective mini-profiler for ASP.NET MVC, ASP.NET and Ruby.
http://miniprofiler.com
1.05k stars 221 forks source link

Remove the need of EntityFramework v4.1 specific version #197

Closed ubikuity closed 10 years ago

ubikuity commented 11 years ago

The benefit is you no longer need to add some assembly binding in the web.config of the profiled application:

<configuration>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="EntityFramework" publicKeyToken="b77a5c561934e089" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.4.0.0" newVersion="4.4.0.0" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
</configuration>
dixon commented 10 years ago

We have moved this project to https://github.com/MiniProfiler/dotnet - would you please make your changes there? Thank you!

ubikuity commented 10 years ago

Done, pull request moved to: https://github.com/MiniProfiler/dotnet/pull/14