[Adapdev-commits] Adapdev/src/Adapdev AppDomainManager.cs,1.2,1.3
Status: Beta
Brought to you by:
intesar66
From: Sean M. <int...@us...> - 2005-10-23 07:27:29
|
Update of /cvsroot/adapdev/Adapdev/src/Adapdev In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25792/src/Adapdev Modified Files: AppDomainManager.cs Log Message: Index: AppDomainManager.cs =================================================================== RCS file: /cvsroot/adapdev/Adapdev/src/Adapdev/AppDomainManager.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** AppDomainManager.cs 23 Apr 2005 04:54:14 -0000 1.2 --- AppDomainManager.cs 23 Oct 2005 07:27:21 -0000 1.3 *************** *** 56,59 **** --- 56,60 ---- protected bool unloaded = false; private string basedir = String.Empty; + private string configFile = String.Empty; // create the logger *************** *** 100,103 **** --- 101,105 ---- this.domainName = domainName; this.domainType = DomainType.Remote; + this.configFile = configurationFile; if(log.IsDebugEnabled) log.Debug("Loading new AppDomainManager"); *************** *** 343,346 **** --- 345,353 ---- } + public string ConfigurationFile + { + get{return this.configFile;} + } + } |