コード例 #1
0
 // Sets the registry root currently in use by the DE. Different installations of Visual Studio can change where their registry information is stored
 // This allows the debugger to tell the engine where that location is.
 public int SetRegistryRoot(string registryRoot)
 {
     _configStore = new HostConfigurationStore(registryRoot);
     Logger       = Logger.EnsureInitialized(_configStore);
     return(Constants.S_OK);
 }
コード例 #2
0
ファイル: AD7Engine.cs プロジェクト: modulexcite/MIEngine
 // Sets the registry root currently in use by the DE. Different installations of Visual Studio can change where their registry information is stored
 // This allows the debugger to tell the engine where that location is.
 int IDebugEngine2.SetRegistryRoot(string registryRoot)
 {
     _configStore = new HostConfigurationStore(registryRoot, EngineConstants.EngineId);
     Logger       = Logger.EnsureInitialized(_configStore);
     return(Constants.S_OK);
 }