Skip to content

Commit

Permalink
fixing display of asmx help page (#37137)
Browse files Browse the repository at this point in the history
if MONO_BROKEN_CONFIGURATION_DLL is defined, make sure that actualPath always gets set
  • Loading branch information
tpokorra authored and marek-safar committed May 3, 2016
1 parent 1027072 commit 99c3ee5
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -75,6 +75,7 @@ protected override void DeserializeElement(XmlReader reader, bool serializeColle
try {
var hack = this.EvaluationContext;
} catch (ConfigurationErrorsException) {
this.actualPath = GetConfigurationDirectory();
return;
}
#endif
Expand Down Expand Up @@ -127,6 +128,7 @@ protected override void Reset(ConfigurationElement parentElement)
var hack = this.EvaluationContext;
} catch (ConfigurationErrorsException) {
base.Reset(parentElement);
this.actualPath = GetConfigurationDirectory();
return;
}
#endif
Expand Down

0 comments on commit 99c3ee5

Please sign in to comment.