c# - After modifying machine.config VS crashes, also many components -


i trying add

<system.transactions>     <machinesettings maxtimeout="02:30:00">     </machinesettings> </system.transactions> 

section end of machine.config local file test out transaction lasts long. transaction initialized local windows app communicating sql server.

so end of machine.config file looks like:

... </providers>         </rolemanager>     </system.web>     <system.transactions>         <machinesettings maxtimeout="02:30:00">         </machinesettings>     </system.transactions> </configuration> 

this machine config file now.

i modifying both c:\windows\microsoft.net\framework\v4.0.30319\config\machine.config c:\windows\microsoft.net\framework64\v4.0.30319\config\machine.config

i following advice given @ link

but, when , reopen app, vs studio project loading fails message: .net trace handling fails. please check .net machine , enterprise configuration.

should else after modifying machine.config ? there quick way out of this fourth thing in row doing increase timeout.

thank time!

resolved:

machine.config case sensitive. section should be:

<system.transactions>     <machinesettings maxtimeout="02:30:00">     </machinesettings> </system.transactions> 

my text in lower cases


Comments

Popular posts from this blog

c# - Validate object ID from GET to POST -

node.js - Custom Model Validator SailsJS -

php - Find a regex to take part of Email -