Hi everyone,
I've just started trying to get into ASP.NET and I'm having some trouble. I have VS 2013P and every brand new project I create throws Could not load file or assembly 'Microsoft.Owin, Version=2.1.0.0"
I've searched high and low for a solution, but none of the ones I've found seem to work. In my startup.cs file is have the lines
<dependentAssembly>
<assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
</dependentAssembly>
so I'm not sure why it's still referencing version 2.1.0.0
I did a fuslogvw to find the reference to Microsoft.Owin and it does have a log for Owin 2.1.0.0 but I don't know why. I put the log here http://pastebin.com/8xJQPpSh
I'm only a newbie so I'm ...
Go to the complete details ...