Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi all,
Got an odd issue setting up a new V8 site,
I setup a new ASP.Net Web Application (Empty) using .Net version 4.7.2 and installed the nuget package, then when i build and run the site through IIS im getting the following error:
Any help is much appreciated
Have you tried adding a reference to that dll, i.e. System.IO.Compression
My project already has a reference to 4.2.0.0 although it is showing another available version to reference which is 4.1.2.0
I have a fresh install in front of me with no reference to that namespace at all. What are you using it for? Where is it being referenced?
im not using it at all, ive literally not even set up a db yet, it was in as dependent assembly in the web.config
<dependentAssembly> <assemblyIdentity name="System.IO.Compression" publicKeyToken="b77a5c561934e089" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0"/> </dependentAssembly>
i have also tried deleting those lines in web.config but then it goes on to do the same for System.IO
So - on my fresh install all I have is:
<runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <dependentAssembly> <assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" culture="neutral" /> <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" /> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="Microsoft.Owin.Security" publicKeyToken="31bf3856ad364e35" culture="neutral" /> <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" /> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="Microsoft.Owin.Security.Cookies" publicKeyToken="31bf3856ad364e35" culture="neutral" /> <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" /> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="Microsoft.Owin.Security.OAuth" publicKeyToken="31bf3856ad364e35" culture="neutral" /> <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" /> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" /> <bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0" /> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="System.Collections.Immutable" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> <bindingRedirect oldVersion="0.0.0.0-1.2.3.0" newVersion="1.2.3.0" /> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="System.Web.Http" publicKeyToken="31bf3856ad364e35" culture="neutral" /> <bindingRedirect oldVersion="0.0.0.0-5.2.7.0" newVersion="5.2.7.0" /> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" culture="neutral" /> <bindingRedirect oldVersion="0.0.0.0-5.2.7.0" newVersion="5.2.7.0" /> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="System.ValueTuple" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" /> <bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" /> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="System.Net.Http.Formatting" publicKeyToken="31bf3856ad364e35" /> <bindingRedirect oldVersion="0.0.0.0-5.2.7.0" newVersion="5.2.7.0" /> </dependentAssembly> </assemblyBinding> </runtime>
Thanks Jo this fixed it, interesting how my install was different though, tried installing a fresh project twice with the same result.
No worries - no idea why my badge states [notactivated]!
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Error Running fresh V8 Install
Hi all,
Got an odd issue setting up a new V8 site,
I setup a new ASP.Net Web Application (Empty) using .Net version 4.7.2 and installed the nuget package, then when i build and run the site through IIS im getting the following error:
Any help is much appreciated
Have you tried adding a reference to that dll, i.e. System.IO.Compression
My project already has a reference to 4.2.0.0 although it is showing another available version to reference which is 4.1.2.0
I have a fresh install in front of me with no reference to that namespace at all. What are you using it for? Where is it being referenced?
im not using it at all, ive literally not even set up a db yet, it was in as dependent assembly in the web.config
i have also tried deleting those lines in web.config but then it goes on to do the same for System.IO
So - on my fresh install all I have is:
Thanks Jo this fixed it, interesting how my install was different though, tried installing a fresh project twice with the same result.
No worries - no idea why my badge states [notactivated]!
is working on a reply...