An image is worth 1000 words, so here are a few images (ignore my editing):



I do not mention or use the Entity Framework in any project of this solution. This has just begun to happen since Tuesday after I installed a bunch of Windows updates. Only nine warnings. I am running Windows 8.1 Pro, but I do not know if this matters. I have other projects in one solution with the same project types and versions of the .NET Framework. The project itself seems to work fine in IIS. All of my Web.config files have the same configuration and structure. This is problematic (more editing):
<?xml version="1.0"?> <configuration> <configSections> ... </configSections> ... <connectionStrings> ... </connectionStrings> <system.web> <compilation debug="true" targetFramework="4.5.1"/> <authentication mode="None"/> <sessionState mode="Off"/> <customErrors mode="RemoteOnly"/> <httpRuntime enableHeaderChecking="false" enableVersionHeader="false" requestValidationMode="2.0" sendCacheControlHeader="false" targetFramework="4.5.1"/> </system.web> <system.webServer> <httpErrors existingResponse="PassThrough"/> <validation validateIntegratedModeConfiguration="true"/> <handlers> <remove name="ExtensionlessUrlHandler-Integrated-4.0"/> <remove name="OPTIONSVerbHandler"/> <remove name="TRACEVerbHandler"/> <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0"/> </handlers> <staticContent> <clientCache cacheControlMode="UseMaxAge" httpExpires="7.00:00:00"/> </staticContent> <urlCompression doStaticCompression="true" doDynamicCompression="true" dynamicCompressionBeforeCache="true"/> <defaultDocument> <files> <clear/> </files> </defaultDocument> </system.webServer> <system.runtime.caching> <memoryCache> <namedCaches> ... </namedCaches> </memoryCache> </system.runtime.caching> <runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <dependentAssembly> <assemblyIdentity name="Microsoft.Data.OData" publicKeyToken="31bf3856ad364e35" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-5.6.0.0" newVersion="5.6.0.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="Microsoft.Data.Edm" publicKeyToken="31bf3856ad364e35" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-5.6.0.0" newVersion="5.6.0.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="Microsoft.ServiceBus" publicKeyToken="31bf3856ad364e35" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-2.2.0.0" newVersion="2.2.0.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="System.Spatial" publicKeyToken="31bf3856ad364e35" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-5.6.0.0" newVersion="5.6.0.0"/> </dependentAssembly> </assemblyBinding> </runtime> </configuration>
source share