asp.net mvc - Error while running MVC application -


hi have been developing mvc application in remote desktop . shared colleague . while executing project im getting following error . , once deleted xxxx.dll in bin project executing why getting following error

error 22 unable copy file "obj\debug\xxxx.dll" "bin\xxxx.dll". process cannot access file 'bin\xxxx.dll' because being used process.

i found answer all

 <system.web> <hostingenvironment shadowcopybinassemblies="false" />  </system.web> 

by changing solve

 <system.web> <hostingenvironment shadowcopybinassemblies="true" />  </system.web> 

Comments

Popular posts from this blog

How to mention the localhost in android -

php - Calling a template part from a post -

c# - String.format() DateTime With Arabic culture -