asp.net - Error in Web.Config -


please tell me use of:

<add assembly="*"/> 

because of getting error:

description: error occurred during processing of configuration file required service request. please review specific error details below , modify configuration file appropriately.   parser error message: exception of type 'system.outofmemoryexception' thrown.  source file: c:\windows\microsoft.net\framework\v2.0.50727\config\web.config  

thanks

as per msdn:

you can specify asterisk (*) wildcard character add every assembly within private assembly cache application, located either in \bin subdirectory of application or in the.net framework installation directory (%systemroot%\microsoft.net\framework\version)

since don't need add assemblies application suggest adding ones using , leave <add assembly="*" /> part out, should solve problem.


Comments

Popular posts from this blog

c++ - Is it possible to compile a VST on linux? -

java - Output of Eclipse is rubbish -

jquery - Confused with JSON data and normal data in Django ajax request -