This is a migrated thread and some comments may be shown as answers.

exception thrown when trying extract method

2 Answers 70 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Troy Brumley
Top achievements
Rank 1
Troy Brumley asked on 05 Feb 2010, 04:19 PM
I'm trying an extract method on a very simple looking bit of VB.NET code and it keeps aborting even after grabbing the latest update.

Here's the code:

        Console.WriteLine("Select a connection: ")  
        Console.WriteLine("1. " & connection1)  
        Console.WriteLine("2. " & connection2)  
        Console.WriteLine("3. " & connection3)  
        Console.Write("Press 1-3 or Q to quit: ")  
        Dim c As String = "" 
        Do  
            c = Console.ReadKey.KeyChar.ToString.ToUpper  
        Loop Until c = "1" Or c = "2" Or c = "3" Or c = "Q" 
        If c = "Q" Then  
            Console.WriteLine("Quit!")  
            Return  
        End If  
        Console.WriteLine()  
        If c = "1" Then connectionCaption = connection1 
        If c = "2" Then connectionCaption = connection2 
        If c = "3" Then connectionCaption = connection3 
 


And here's the top of the log:

INFO 2010-02-05 11:02:39.653 : Framework Version:2.0.50727.3603
INFO 2010-02-05 11:02:43.559 : JustCode Version: 2010.1.125.1
INFO 2010-02-05 11:02:43.599 : VS Version: 9.0
SILENT 2010-02-05 11:02:44.400 : Try to get VS property TextEditor\CSharp-Specific\Squiggles_SemanticAnalysis.
SILENT 2010-02-05 11:02:44.430 : System.ArgumentException: Value does not fall within the expected range.
   at EnvDTE.Properties.Item(Object index)
   at Telerik.JustCode.Services.DTEPropertiesExtensions.GetProperty(_DTE dte, String category, String page, String name) in c:\B\Manticore\Production\Sources\source\JustCode.Application\Services\DTEPropertiesExtensions.cs:line 220
Log Site Stacktrace:
   at Telerik.JustCode.Common.Logging.ExceptionInfo.GetExceptionString(Exception ex) in c:\B\Manticore\Production\Sources\source\Common\Logging\ExceptionInfo.cs:line 85
   at Telerik.JustCode.Common.Logging.LogService.LogSilently(Exception exception) in c:\B\Manticore\Production\Sources\source\Common\Logging\LogService.cs:line 166
   at Telerik.JustCode.Common.Logging.LogService.LogSilently(Exception exception, String message) in c:\B\Manticore\Production\Sources\source\Common\Logging\LogService.cs:line 189
   at Telerik.JustCode.Common.Logger.LogSilently(Exception exception, String message) in c:\B\Manticore\Production\Sources\source\Common\Logger.cs:line 224
   at Telerik.JustCode.Services.DTEPropertiesExtensions.GetProperty(_DTE dte, String category, String page, String name) in c:\B\Manticore\Production\Sources\source\JustCode.Application\Services\DTEPropertiesExtensions.cs:line 226
   at Telerik.JustCode.Services.DTEPropertiesExtensions.GetPropertySquigglesSemanticAnalysis(_DTE dte) in c:\B\Manticore\Production\Sources\source\JustCode.Application\Services\DTEPropertiesExtensions.cs:line 155
   at Telerik.JustCode.Services.VSApplicationService.†() in c:\B\Manticore\Production\Sources\source\JustCode.Application\Services\VSApplicationService.cs:line 163
   at Telerik.JustCode.Services.VSApplicationService..ctor(DTE applicationObject) in c:\B\Manticore\Production\Sources\source\JustCode.Application\Services\VSApplicationService.cs:line 68
   at Telerik.JustCode.JustCodeApplication.€(DTE applicationObject) in c:\B\Manticore\Production\Sources\source\JustCode.Application\JustCodeApplication.cs:line 289
   at Telerik.JustCode.JustCodeApplication.OnPackageLoaded(DTE dte) in c:\B\Manticore\Production\Sources\source\JustCode.Application\JustCodeApplication.cs:line 123
   at Telerik.JustCode.JustCode.OnShellPropertyChange(Int32 propid, Object var) in c:\B\Manticore\Production\Sources\source\JustCode\JustCode.cs:line 54

VERBOSE 2010-02-05 11:02:51.861 : MetadataToCSConverter created
SILENT 2010-02-05 11:02:53.483 : System.ServiceModel.ProtocolException: The remote server returned an unexpected response: (407) Proxy Authentication Required ( The ISA Server requires authorization to fulfill the request. Access to the Web Proxy service is denied.  ). ---> System.Net.WebException: The remote server returned an error: (407) Proxy Authentication Required.
   at System.Net.HttpWebRequest.GetResponse()
   at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)
   --- End of inner exception stack trace ---

Server stack trace:
   at System.ServiceModel.Channels.HttpChannelUtilities.ValidateRequestReplyResponse(HttpWebRequest request, HttpWebResponse response, HttpChannelFactory factory, WebException responseException)
   at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)
   at System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)
   at System.ServiceModel.Dispatcher.RequestChannelBinder.Request(Message message, TimeSpan timeout)
   at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)
   at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs)
   at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)
   at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)

Exception rethrown at [0]:
   at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
   at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
   at Telerik.JustCode.Update.Services.IUpdatesService.CheckForLatestVersion(String version)
   at Telerik.JustCode.Update.Services.UpdatesServiceClient.CheckForLatestVersion(String version) in c:\B\Manticore\Production\Sources\source\JustCode.Update\Service References\Services\Reference.cs:line 244
   at Telerik.JustCode.Update.Updater.(String lastCheckedVersion, Dispatcher uiDispatcher) in c:\B\Manticore\Production\Sources\source\JustCode.Update\Updater.cs:line 219
Log Site Stacktrace:
   at Telerik.JustCode.Common.Logging.ExceptionInfo.GetExceptionString(Exception ex) in c:\B\Manticore\Production\Sources\source\Common\Logging\ExceptionInfo.cs:line 85
   at Telerik.JustCode.Common.Logging.LogService.LogSilently(Exception exception) in c:\B\Manticore\Production\Sources\source\Common\Logging\LogService.cs:line 166
   at Telerik.JustCode.Common.Logger.LogSilently(Exception exception) in c:\B\Manticore\Production\Sources\source\Common\Logger.cs:line 212
   at Telerik.JustCode.Update.Updater.(String lastCheckedVersion, Dispatcher uiDispatcher) in c:\B\Manticore\Production\Sources\source\JustCode.Update\Updater.cs:line 16777215
   at Telerik.JustCode.Update.Updater.CheckForUpdates(Dispatcher dispatcher) in c:\B\Manticore\Production\Sources\source\JustCode.Update\Updater.cs:line 212
   at Telerik.JustCode.Update.Updater.CheckForUpdates(IDialogWindowService dialogWindowService, IUserConfigurationService userConfigurationService, Dispatcher dispatcher, Action finishedCallback) in c:\B\Manticore\Production\Sources\source\JustCode.Update\Updater.cs:line 45
   at Telerik.JustCode.Update.Updater...‰(Object _) in c:\B\Manticore\Production\Sources\source\JustCode.Update\Updater.cs:line 16777215
   at System.Threading._ThreadPoolWaitCallback.WaitCallback_Context(Object state)
   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
   at System.Threading._ThreadPoolWaitCallback.PerformWaitCallbackInternal(_ThreadPoolWaitCallback tpWaitCallBack)
   at System.Threading._ThreadPoolWaitCallback.PerformWaitCallback(Object state)

VERBOSE 2010-02-05 11:03:02.466 : SolutionEventListener.OnAfterOpenSolution() - Trying to open a solution
VERBOSE 2010-02-05 11:03:02.466 : SolutionEventListener.OnAfterOpenSolution() - Opening a solution
VERBOSE 2010-02-05 11:03:02.466 : SolutionEventListener.OnSolutionOpened() - Trying to call the SolutionOpened event
VERBOSE 2010-02-05 11:03:02.466 : SolutionEventListener.SolutionOpened() - Calling the SolutionOpened event
VERBOSE 2010-02-05 11:03:02.466 : JustCodeApplication.OnSolutionOpened() - IsAddinActive: True
INFO 2010-02-05 11:03:02.466 : Solution initialization started.
INFO 2010-02-05 11:03:05.220 : Started engine service process id 2096
INFO 2010-02-05 11:03:05.641 : Server (2096): Code analysis process started.
VERBOSE 2010-02-05 11:03:05.691 : Server (2096): MetadataToCSConverter created
VERBOSE 2010-02-05 11:03:05.841 : Server (2096): Can not gather GC statistics with incremental GC.
SILENT 2010-02-05 11:03:05.981 : Server (2096): Applying dispatch error handler behavior
SILENT 2010-02-05 11:03:06.171 : Applying client error handler behavior
INFO 2010-02-05 11:03:06.211 : Server (2096): Code analysis service is ready.
INFO 2010-02-05 11:03:06.332 : Connection to engine service elapsed: 1453
VERBOSE 2010-02-05 11:03:06.472 : Server (2096): CLMEngine.MainLoop() - Suspended start
VERBOSE 2010-02-05 11:03:07.183 : Server (2096): Action started: RegisterCallback
VERBOSE 2010-02-05 11:03:07.193 : Server (2096): Action completed: RegisterCallback elapsed: 7 ms pending actions: 0
VERBOSE 2010-02-05 11:03:07.483 : Server (2096): Action started: SetPersistanceDirectory
VERBOSE 2010-02-05 11:03:07.483 : Server (2096): Action completed: SetPersistanceDirectory elapsed: 0 ms pending actions: 0
SILENT 2010-02-05 11:03:07.543 : Try to get VS property TextEditor\JScript\IndentSize.
SILENT 2010-02-05 11:03:07.553 : System.Runtime.InteropServices.COMException (0x8002000B): Invalid index. (Exception from HRESULT: 0x8002000B (DISP_E_BADINDEX))
   at EnvDTE._DTE.get_Properties(String Category, String Page)
   at Telerik.JustCode.Services.DTEPropertiesExtensions.GetProperty(_DTE dte, String category, String page, String name) in c:\B\Manticore\Production\Sources\source\JustCode.Application\Services\DTEPropertiesExtensions.cs:line 220
Log Site Stacktrace:
   at Telerik.JustCode.Common.Logging.ExceptionInfo.GetExceptionString(Exception ex) in c:\B\Manticore\Production\Sources\source\Common\Logging\ExceptionInfo.cs:line 85
   at Telerik.JustCode.Common.Logging.LogService.LogSilently(Exception exception) in c:\B\Manticore\Production\Sources\source\Common\Logging\LogService.cs:line 166
   at Telerik.JustCode.Common.Logging.LogService.LogSilently(Exception exception, String message) in c:\B\Manticore\Production\Sources\source\Common\Logging\LogService.cs:line 189
   at Telerik.JustCode.Common.Logger.LogSilently(Exception exception, String message) in c:\B\Manticore\Production\Sources\source\Common\Logger.cs:line 224
   at Telerik.JustCode.Services.DTEPropertiesExtensions.GetProperty(_DTE dte, String category, String page, String name) in c:\B\Manticore\Production\Sources\source\JustCode.Application\Services\DTEPropertiesExtensions.cs:line 226
   at Telerik.JustCode.Services.DTEPropertiesExtensions.GetPropertyIndentSize(_DTE dte, String languagePage) in c:\B\Manticore\Production\Sources\source\JustCode.Application\Services\DTEPropertiesExtensions.cs:line 164
   at Telerik.JustCode.Services.VSApplicationService.GetVSFormatterOptions() in c:\B\Manticore\Production\Sources\source\JustCode.Application\Services\VSApplicationService.cs:line 187
   at Telerik.JustCode.UserInterface.UI.Initialize() in c:\B\Manticore\Production\Sources\source\UserInterface\UI.cs:line 172
   at Telerik.JustCode.JustCodeApplication.–€() in c:\B\Manticore\Production\Sources\source\JustCode.Application\JustCodeApplication.cs:line 515
   at Telerik.JustCode.JustCodeApplication.˜() in c:\B\Manticore\Production\Sources\source\JustCode.Application\JustCodeApplication.cs:line 469
   at Telerik.JustCode.JustCodeApplication.OnSolutionOpened() in c:\B\Manticore\Production\Sources\source\JustCode.Application\JustCodeApplication.cs:line 445
   at Telerik.JustCode.JustCodeApplication.™(Object s, EventArgs e) in c:\B\Manticore\Production\Sources\source\JustCode.Application\JustCodeApplication.cs:line 16777215
   at Š.œ.OnSolutionOpened() in c:\B\Manticore\Production\Sources\source\JustCode.Application\Services\SolutionEventListener.cs:line 109
   at Š.œ.OnAfterOpenSolution(Object pUnkReserved, Int32 fNewSolution) in c:\B\Manticore\Production\Sources\source\JustCode.Application\Services\SolutionEventListener.cs:line 46

SILENT 2010-02-05 11:03:07.573 : Try to get VS property TextEditor\JScript\InsertTabs.
SILENT 2010-02-05 11:03:07.573 : System.Runtime.InteropServices.COMException (0x8002000B): Invalid index. (Exception from HRESULT: 0x8002000B (DISP_E_BADINDEX))
   at EnvDTE._DTE.get_Properties(String Category, String Page)
   at Telerik.JustCode.Services.DTEPropertiesExtensions.GetProperty(_DTE dte, String category, String page, String name) in c:\B\Manticore\Production\Sources\source\JustCode.Application\Services\DTEPropertiesExtensions.cs:line 220
Log Site Stacktrace:
   at Telerik.JustCode.Common.Logging.ExceptionInfo.GetExceptionString(Exception ex) in c:\B\Manticore\Production\Sources\source\Common\Logging\ExceptionInfo.cs:line 85
   at Telerik.JustCode.Common.Logging.LogService.LogSilently(Exception exception) in c:\B\Manticore\Production\Sources\source\Common\Logging\LogService.cs:line 166
   at Telerik.JustCode.Common.Logging.LogService.LogSilently(Exception exception, String message) in c:\B\Manticore\Production\Sources\source\Common\Logging\LogService.cs:line 189
   at Telerik.JustCode.Common.Logger.LogSilently(Exception exception, String message) in c:\B\Manticore\Production\Sources\source\Common\Logger.cs:line 224
   at Telerik.JustCode.Services.DTEPropertiesExtensions.GetProperty(_DTE dte, String category, String page, String name) in c:\B\Manticore\Production\Sources\source\JustCode.Application\Services\DTEPropertiesExtensions.cs:line 226
   at Telerik.JustCode.Services.DTEPropertiesExtensions.GetPropertyInsertTabs(_DTE dte, String languagePage) in c:\B\Manticore\Production\Sources\source\JustCode.Application\Services\DTEPropertiesExtensions.cs:line 171
   at Telerik.JustCode.Services.VSApplicationService.GetVSFormatterOptions() in c:\B\Manticore\Production\Sources\source\JustCode.Application\Services\VSApplicationService.cs:line 199
   at Telerik.JustCode.UserInterface.UI.Initialize() in c:\B\Manticore\Production\Sources\source\UserInterface\UI.cs:line 172
   at Telerik.JustCode.JustCodeApplication.–€() in c:\B\Manticore\Production\Sources\source\JustCode.Application\JustCodeApplication.cs:line 515
   at Telerik.JustCode.JustCodeApplication.˜() in c:\B\Manticore\Production\Sources\source\JustCode.Application\JustCodeApplication.cs:line 469
   at Telerik.JustCode.JustCodeApplication.OnSolutionOpened() in c:\B\Manticore\Production\Sources\source\JustCode.Application\JustCodeApplication.cs:line 445
   at Telerik.JustCode.JustCodeApplication.™(Object s, EventArgs e) in c:\B\Manticore\Production\Sources\source\JustCode.Application\JustCodeApplication.cs:line 16777215
   at Š.œ.OnSolutionOpened() in c:\B\Manticore\Production\Sources\source\JustCode.Application\Services\SolutionEventListener.cs:line 109
   at Š.œ.OnAfterOpenSolution(Object pUnkReserved, Int32 fNewSolution) in c:\B\Manticore\Production\Sources\source\JustCode.Application\Services\SolutionEventListener.cs:line 46

VERBOSE 2010-02-05 11:03:08.244 : AssemblyLocator.CurrentDomain_AssemblyResolve() - CLR could not resolve: Telerik.JustCode.UserInterface.Theme, Culture=neutral
VERBOSE 2010-02-05 11:03:08.244 : AssemblyLocator.CurrentDomain_AssemblyResolve() - Trying to load assembly normally
VERBOSE 2010-02-05 11:03:08.294 : AssemblyLocator.CurrentDomain_AssemblyResolve() - Normal load result: Telerik.JustCode.UserInterface.Theme, Version=2010.1.125.1, Culture=neutral, PublicKeyToken=null
VERBOSE 2010-02-05 11:03:10.267 : [RenameViewModel] CanRenameFile is False
VERBOSE 2010-02-05 11:03:10.778 : Server (2096): Action started: Resume
VERBOSE 2010-02-05 11:03:10.788 : Server (2096): Action completed: Resume elapsed: 0 ms pending actions: 0
VERBOSE 2010-02-05 11:03:10.788 : VSSolutionService.OnSolutionOpened() - Solution Opened
INFO 2010-02-05 11:03:10.818 : Solution initialization completed.
VERBOSE 2010-02-05 11:03:10.838 : Server (2096): CLMEngine.MainLoop() - Initial resume
VERBOSE 2010-02-05 11:03:11.599 : VSSolutionService.SolutionEventTimerElapsed() - Start executing events: e54dbd8d-c782-4fec-83bd-ea4b0899f8a0
VERBOSE 2010-02-05 11:03:12.000 : VSEditorService.Opened() - Opened: C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\BwsWrapper.vb in C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\JavaBwsPrototype.vbproj
VERBOSE 2010-02-05 11:03:12.150 : Server (2096): Action started: RegisterOpenFile
VERBOSE 2010-02-05 11:03:12.160 : Server (2096): CLMEngine.RegisterOpenFile() - Path: C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\BwsWrapper.vb in C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\JavaBwsPrototype.vbproj
VERBOSE 2010-02-05 11:03:12.160 : Server (2096): Action completed: RegisterOpenFile elapsed: 5 ms pending actions: 0
VERBOSE 2010-02-05 11:03:12.180 : Server (2096): Action started: Recheck
VERBOSE 2010-02-05 11:03:12.180 : Server (2096): Action completed: Recheck elapsed: 0 ms pending actions: 0
VERBOSE 2010-02-05 11:03:13.021 : VSEditorService.Opened() - Opened: C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\CJavaControl.vb in C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\JavaBwsPrototype.vbproj
VERBOSE 2010-02-05 11:03:13.021 : Server (2096): Action started: RegisterOpenFile
VERBOSE 2010-02-05 11:03:13.021 : Server (2096): CLMEngine.RegisterOpenFile() - Path: C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\CJavaControl.vb in C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\JavaBwsPrototype.vbproj
VERBOSE 2010-02-05 11:03:13.021 : Server (2096): Action completed: RegisterOpenFile elapsed: 0 ms pending actions: 0
VERBOSE 2010-02-05 11:03:13.021 : Server (2096): Action started: Recheck
VERBOSE 2010-02-05 11:03:13.021 : Server (2096): Action completed: Recheck elapsed: 0 ms pending actions: 0
VERBOSE 2010-02-05 11:03:13.081 : VSEditorService.Opened() - Opened: C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\Module1.vb in C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\JavaBwsPrototype.vbproj
VERBOSE 2010-02-05 11:03:13.081 : Server (2096): Action started: RegisterOpenFile
VERBOSE 2010-02-05 11:03:13.081 : Server (2096): CLMEngine.RegisterOpenFile() - Path: C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\Module1.vb in C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\JavaBwsPrototype.vbproj
VERBOSE 2010-02-05 11:03:13.081 : Server (2096): Action completed: RegisterOpenFile elapsed: 0 ms pending actions: 0
VERBOSE 2010-02-05 11:03:13.081 : Server (2096): Action started: Recheck
VERBOSE 2010-02-05 11:03:13.081 : Server (2096): Action completed: Recheck elapsed: 0 ms pending actions: 0
VERBOSE 2010-02-05 11:03:13.151 : VSEditorService.Opened() - Opened: C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\CScreen.vb in C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\JavaBwsPrototype.vbproj
VERBOSE 2010-02-05 11:03:13.151 : Server (2096): Action started: RegisterOpenFile
VERBOSE 2010-02-05 11:03:13.151 : Server (2096): CLMEngine.RegisterOpenFile() - Path: C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\CScreen.vb in C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\JavaBwsPrototype.vbproj
VERBOSE 2010-02-05 11:03:13.151 : Server (2096): Action completed: RegisterOpenFile elapsed: 1 ms pending actions: 0
VERBOSE 2010-02-05 11:03:13.151 : Server (2096): Action started: Recheck
VERBOSE 2010-02-05 11:03:13.151 : Server (2096): Action completed: Recheck elapsed: 0 ms pending actions: 0
VERBOSE 2010-02-05 11:03:13.292 : VSEditorService.Opened() - Opened: C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\CField.vb in C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\JavaBwsPrototype.vbproj
VERBOSE 2010-02-05 11:03:13.292 : Server (2096): Action started: RegisterOpenFile
VERBOSE 2010-02-05 11:03:13.292 : Server (2096): CLMEngine.RegisterOpenFile() - Path: C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\CField.vb in C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\JavaBwsPrototype.vbproj
VERBOSE 2010-02-05 11:03:13.292 : Server (2096): Action completed: RegisterOpenFile elapsed: 0 ms pending actions: 0
VERBOSE 2010-02-05 11:03:13.292 : Server (2096): Action started: Recheck
VERBOSE 2010-02-05 11:03:13.292 : Server (2096): Action completed: Recheck elapsed: 0 ms pending actions: 0
VERBOSE 2010-02-05 11:03:13.352 : VSEditorService.Opened() - Opened: C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\JavaControlBoundsHighlighter.vb in C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\JavaBwsPrototype.vbproj
VERBOSE 2010-02-05 11:03:13.352 : Server (2096): Action started: RegisterOpenFile
VERBOSE 2010-02-05 11:03:13.352 : Server (2096): CLMEngine.RegisterOpenFile() - Path: C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\JavaControlBoundsHighlighter.vb in C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\JavaBwsPrototype.vbproj
VERBOSE 2010-02-05 11:03:13.352 : Server (2096): Action completed: RegisterOpenFile elapsed: 0 ms pending actions: 0
VERBOSE 2010-02-05 11:03:13.352 : Server (2096): Action started: Recheck
VERBOSE 2010-02-05 11:03:13.352 : Server (2096): Action completed: Recheck elapsed: 0 ms pending actions: 0
VERBOSE 2010-02-05 11:03:13.422 : VSEditorService.Opened() - Opened: C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\CTextString.vb in C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\JavaBwsPrototype.vbproj
VERBOSE 2010-02-05 11:03:13.422 : Server (2096): Action started: RegisterOpenFile
VERBOSE 2010-02-05 11:03:13.422 : Server (2096): CLMEngine.RegisterOpenFile() - Path: C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\CTextString.vb in C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\JavaBwsPrototype.vbproj
VERBOSE 2010-02-05 11:03:13.422 : Server (2096): Action completed: RegisterOpenFile elapsed: 0 ms pending actions: 0
VERBOSE 2010-02-05 11:03:13.422 : Server (2096): Action started: Recheck
VERBOSE 2010-02-05 11:03:13.422 : Server (2096): Action completed: Recheck elapsed: 0 ms pending actions: 0
VERBOSE 2010-02-05 11:03:13.492 : VSEditorService.Opened() - Opened: C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\EventMonitor.vb in C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\JavaBwsPrototype.vbproj
VERBOSE 2010-02-05 11:03:13.492 : Server (2096): Action started: RegisterOpenFile
VERBOSE 2010-02-05 11:03:13.492 : Server (2096): CLMEngine.RegisterOpenFile() - Path: C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\EventMonitor.vb in C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\JavaBwsPrototype.vbproj
VERBOSE 2010-02-05 11:03:13.492 : Server (2096): Action completed: RegisterOpenFile elapsed: 0 ms pending actions: 0
VERBOSE 2010-02-05 11:03:13.492 : Server (2096): Action started: Recheck
VERBOSE 2010-02-05 11:03:13.492 : Server (2096): Action completed: Recheck elapsed: 0 ms pending actions: 0
VERBOSE 2010-02-05 11:03:13.582 : VSEditorService.WindowActivated() - Activated: C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\EventMonitor.vb in C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\JavaBwsPrototype.vbproj
VERBOSE 2010-02-05 11:03:13.712 : VSEditorService.WindowActivated() - Activated: C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\CJavaControl.vb in C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\JavaBwsPrototype.vbproj
VERBOSE 2010-02-05 11:03:13.772 : Server (2096): Action started: RequestContext
VERBOSE 2010-02-05 11:03:13.772 : Server (2096): Action completed: RequestContext elapsed: 1 ms pending actions: 0
VERBOSE 2010-02-05 11:03:13.782 : VSSolutionService.RaiseSolutionEvents() - Executing event (e54dbd8d-c782-4fec-83bd-ea4b0899f8a0): , True
VERBOSE 2010-02-05 11:03:13.782 : Server (2096): Action started: Suspend
VERBOSE 2010-02-05 11:03:13.782 : Server (2096): Action completed: Suspend elapsed: 0 ms pending actions: 0
VERBOSE 2010-02-05 11:03:13.852 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:13.872 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
VERBOSE 2010-02-05 11:03:13.882 : Server (2096): PEReader.Read() - Reading assembly: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
VERBOSE 2010-02-05 11:03:13.983 : Server (2096): Action completed: GetMetadataXml elapsed: 123 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.133 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.133 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll
VERBOSE 2010-02-05 11:03:14.133 : Server (2096): PEReader.Read() - Reading assembly: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll
VERBOSE 2010-02-05 11:03:14.143 : Server (2096): Action completed: GetMetadataXml elapsed: 12 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.143 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.143 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Data.dll
VERBOSE 2010-02-05 11:03:14.143 : Server (2096): PEReader.Read() - Reading assembly: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Data.dll
VERBOSE 2010-02-05 11:03:14.153 : Server (2096): Action completed: GetMetadataXml elapsed: 11 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.163 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.163 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Deployment.dll
VERBOSE 2010-02-05 11:03:14.163 : Server (2096): PEReader.Read() - Reading assembly: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Deployment.dll
VERBOSE 2010-02-05 11:03:14.163 : Server (2096): Action completed: GetMetadataXml elapsed: 2 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.163 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.163 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Drawing.dll
VERBOSE 2010-02-05 11:03:14.163 : Server (2096): PEReader.Read() - Reading assembly: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Drawing.dll
VERBOSE 2010-02-05 11:03:14.173 : Server (2096): Action completed: GetMetadataXml elapsed: 5 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.173 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.173 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Windows.Forms.dll
VERBOSE 2010-02-05 11:03:14.173 : Server (2096): PEReader.Read() - Reading assembly: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Windows.Forms.dll
VERBOSE 2010-02-05 11:03:14.183 : Server (2096): Action completed: GetMetadataXml elapsed: 9 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.183 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.183 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Xml.dll
VERBOSE 2010-02-05 11:03:14.183 : Server (2096): PEReader.Read() - Reading assembly: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Xml.dll
VERBOSE 2010-02-05 11:03:14.193 : Server (2096): Action completed: GetMetadataXml elapsed: 10 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.193 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.193 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\System.Core.dll
VERBOSE 2010-02-05 11:03:14.193 : Server (2096): PEReader.Read() - Reading assembly: C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\System.Core.dll
VERBOSE 2010-02-05 11:03:14.193 : Server (2096): Action completed: GetMetadataXml elapsed: 3 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.263 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.263 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\System.Xml.Linq.dll
VERBOSE 2010-02-05 11:03:14.263 : Server (2096): PEReader.Read() - Reading assembly: C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\System.Xml.Linq.dll
VERBOSE 2010-02-05 11:03:14.263 : Server (2096): Action completed: GetMetadataXml elapsed: 2 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.263 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.263 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\System.Data.DataSetExtensions.dll
VERBOSE 2010-02-05 11:03:14.263 : Server (2096): PEReader.Read() - Reading assembly: C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\System.Data.DataSetExtensions.dll
VERBOSE 2010-02-05 11:03:14.263 : Server (2096): Action completed: GetMetadataXml elapsed: 1 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.263 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.263 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\obj\Debug\Interop.Accessibility.dll
VERBOSE 2010-02-05 11:03:14.263 : Server (2096): PEReader.Read() - Reading assembly: C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\obj\Debug\Interop.Accessibility.dll
VERBOSE 2010-02-05 11:03:14.273 : Server (2096): Action completed: GetMetadataXml elapsed: 3 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.273 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.273 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\obj\Debug\Interop.BostonWorkStation70.dll
VERBOSE 2010-02-05 11:03:14.273 : Server (2096): PEReader.Read() - Reading assembly: C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\obj\Debug\Interop.BostonWorkStation70.dll
VERBOSE 2010-02-05 11:03:14.273 : Server (2096): Action completed: GetMetadataXml elapsed: 1 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.273 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.273 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\WINDOWS\assembly\GAC\Microsoft.mshtml\7.0.3300.0__b03f5f7f11d50a3a\Microsoft.mshtml.dll
VERBOSE 2010-02-05 11:03:14.273 : Server (2096): PEReader.Read() - Reading assembly: C:\WINDOWS\assembly\GAC\Microsoft.mshtml\7.0.3300.0__b03f5f7f11d50a3a\Microsoft.mshtml.dll
VERBOSE 2010-02-05 11:03:14.313 : Server (2096): Action completed: GetMetadataXml elapsed: 35 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.313 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.313 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\obj\Debug\Interop.SHDocVw.dll
VERBOSE 2010-02-05 11:03:14.313 : Server (2096): PEReader.Read() - Reading assembly: C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\obj\Debug\Interop.SHDocVw.dll
VERBOSE 2010-02-05 11:03:14.313 : Server (2096): Action completed: GetMetadataXml elapsed: 2 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.313 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.313 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\WINDOWS\assembly\GAC\stdole\7.0.3300.0__b03f5f7f11d50a3a\stdole.dll
VERBOSE 2010-02-05 11:03:14.313 : Server (2096): PEReader.Read() - Reading assembly: C:\WINDOWS\assembly\GAC\stdole\7.0.3300.0__b03f5f7f11d50a3a\stdole.dll
VERBOSE 2010-02-05 11:03:14.313 : Server (2096): Action completed: GetMetadataXml elapsed: 1 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.313 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.313 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\obj\Debug\Interop.VBA.dll
VERBOSE 2010-02-05 11:03:14.313 : Server (2096): PEReader.Read() - Reading assembly: C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\obj\Debug\Interop.VBA.dll
VERBOSE 2010-02-05 11:03:14.323 : Server (2096): Action completed: GetMetadataXml elapsed: 1 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.323 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.323 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\obj\Debug\Interop.WS32Lib.dll
VERBOSE 2010-02-05 11:03:14.323 : Server (2096): PEReader.Read() - Reading assembly: C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\obj\Debug\Interop.WS32Lib.dll
VERBOSE 2010-02-05 11:03:14.323 : Server (2096): Action completed: GetMetadataXml elapsed: 0 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.323 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.323 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\microsoft.visualbasic.dll
VERBOSE 2010-02-05 11:03:14.323 : Server (2096): PEReader.Read() - Reading assembly: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\microsoft.visualbasic.dll
VERBOSE 2010-02-05 11:03:14.323 : Server (2096): Action completed: GetMetadataXml elapsed: 3 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.433 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.433 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Configuration.dll
VERBOSE 2010-02-05 11:03:14.433 : Server (2096): PEReader.Read() - Reading assembly: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Configuration.dll
VERBOSE 2010-02-05 11:03:14.433 : Server (2096): Action completed: GetMetadataXml elapsed: 3 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.433 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.433 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Data.SqlXml.dll
VERBOSE 2010-02-05 11:03:14.433 : Server (2096): PEReader.Read() - Reading assembly: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Data.SqlXml.dll
VERBOSE 2010-02-05 11:03:14.443 : Server (2096): Action completed: GetMetadataXml elapsed: 2 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.443 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.443 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Security.dll
VERBOSE 2010-02-05 11:03:14.443 : Server (2096): PEReader.Read() - Reading assembly: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Security.dll
VERBOSE 2010-02-05 11:03:14.443 : Server (2096): Action completed: GetMetadataXml elapsed: 1 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.443 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.443 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Accessibility.dll
VERBOSE 2010-02-05 11:03:14.443 : Server (2096): PEReader.Read() - Reading assembly: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Accessibility.dll
VERBOSE 2010-02-05 11:03:14.443 : Server (2096): Action completed: GetMetadataXml elapsed: 1 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.443 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.443 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Runtime.Serialization.Formatters.Soap.dll
VERBOSE 2010-02-05 11:03:14.443 : Server (2096): PEReader.Read() - Reading assembly: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Runtime.Serialization.Formatters.Soap.dll
VERBOSE 2010-02-05 11:03:14.453 : Server (2096): Action completed: GetMetadataXml elapsed: 4 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.453 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.453 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Runtime.Remoting.dll
VERBOSE 2010-02-05 11:03:14.453 : Server (2096): PEReader.Read() - Reading assembly: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Runtime.Remoting.dll
VERBOSE 2010-02-05 11:03:14.453 : Server (2096): Action completed: GetMetadataXml elapsed: 2 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.453 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.453 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Web.dll
VERBOSE 2010-02-05 11:03:14.453 : Server (2096): PEReader.Read() - Reading assembly: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Web.dll
VERBOSE 2010-02-05 11:03:14.463 : Server (2096): Action completed: GetMetadataXml elapsed: 13 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.483 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.483 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.VisualC.dll
VERBOSE 2010-02-05 11:03:14.483 : Server (2096): PEReader.Read() - Reading assembly: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.VisualC.dll
VERBOSE 2010-02-05 11:03:14.483 : Server (2096): Action completed: GetMetadataXml elapsed: 2 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.483 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.483 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Transactions.dll
VERBOSE 2010-02-05 11:03:14.483 : Server (2096): PEReader.Read() - Reading assembly: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Transactions.dll
VERBOSE 2010-02-05 11:03:14.483 : Server (2096): Action completed: GetMetadataXml elapsed: 2 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.483 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.483 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.EnterpriseServices.dll
VERBOSE 2010-02-05 11:03:14.483 : Server (2096): PEReader.Read() - Reading assembly: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.EnterpriseServices.dll
VERBOSE 2010-02-05 11:03:14.483 : Server (2096): Action completed: GetMetadataXml elapsed: 1 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.493 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.493 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.DirectoryServices.dll
VERBOSE 2010-02-05 11:03:14.493 : Server (2096): PEReader.Read() - Reading assembly: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.DirectoryServices.dll
VERBOSE 2010-02-05 11:03:14.493 : Server (2096): Action completed: GetMetadataXml elapsed: 1 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.493 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.493 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Web.Services.dll
VERBOSE 2010-02-05 11:03:14.493 : Server (2096): PEReader.Read() - Reading assembly: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Web.Services.dll
VERBOSE 2010-02-05 11:03:14.493 : Server (2096): Action completed: GetMetadataXml elapsed: 4 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.503 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.503 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Design.dll
VERBOSE 2010-02-05 11:03:14.503 : Server (2096): PEReader.Read() - Reading assembly: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Design.dll
VERBOSE 2010-02-05 11:03:14.503 : Server (2096): Action completed: GetMetadataXml elapsed: 8 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.513 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.513 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Drawing.Design.dll
VERBOSE 2010-02-05 11:03:14.513 : Server (2096): PEReader.Read() - Reading assembly: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Drawing.Design.dll
VERBOSE 2010-02-05 11:03:14.513 : Server (2096): Action completed: GetMetadataXml elapsed: 2 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.513 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.513 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Data.OracleClient.dll
VERBOSE 2010-02-05 11:03:14.513 : Server (2096): PEReader.Read() - Reading assembly: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Data.OracleClient.dll
VERBOSE 2010-02-05 11:03:14.513 : Server (2096): Action completed: GetMetadataXml elapsed: 1 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.513 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.513 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Web.RegularExpressions.dll
VERBOSE 2010-02-05 11:03:14.513 : Server (2096): PEReader.Read() - Reading assembly: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Web.RegularExpressions.dll
VERBOSE 2010-02-05 11:03:14.523 : Server (2096): Action completed: GetMetadataXml elapsed: 2 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.523 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.523 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.DirectoryServices.Protocols.dll
VERBOSE 2010-02-05 11:03:14.523 : Server (2096): PEReader.Read() - Reading assembly: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.DirectoryServices.Protocols.dll
VERBOSE 2010-02-05 11:03:14.523 : Server (2096): Action completed: GetMetadataXml elapsed: 4 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.523 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.523 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.ServiceProcess.dll
VERBOSE 2010-02-05 11:03:14.523 : Server (2096): PEReader.Read() - Reading assembly: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.ServiceProcess.dll
VERBOSE 2010-02-05 11:03:14.523 : Server (2096): Action completed: GetMetadataXml elapsed: 1 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.523 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.523 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Configuration.Install.dll
VERBOSE 2010-02-05 11:03:14.523 : Server (2096): PEReader.Read() - Reading assembly: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Configuration.Install.dll
VERBOSE 2010-02-05 11:03:14.533 : Server (2096): Action completed: GetMetadataXml elapsed: 1 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.533 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.533 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Management.dll
VERBOSE 2010-02-05 11:03:14.533 : Server (2096): PEReader.Read() - Reading assembly: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Management.dll
VERBOSE 2010-02-05 11:03:14.533 : Server (2096): Action completed: GetMetadataXml elapsed: 1 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.533 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.533 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.JScript.dll
VERBOSE 2010-02-05 11:03:14.533 : Server (2096): PEReader.Read() - Reading assembly: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.JScript.dll
VERBOSE 2010-02-05 11:03:14.533 : Server (2096): Action completed: GetMetadataXml elapsed: 2 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.533 : Server (2096): Action started: GetMetadataXml
VERBOSE 2010-02-05 11:03:14.533 : Server (2096): MetadataToCSConverter.IsSyntheticSourceLibUptodate() - Cache file does not (yet) exist:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.Vsa.dll
VERBOSE 2010-02-05 11:03:14.533 : Server (2096): PEReader.Read() - Reading assembly: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.Vsa.dll
VERBOSE 2010-02-05 11:03:14.543 : Server (2096): Action completed: GetMetadataXml elapsed: 2 ms pending actions: 0
INFO 2010-02-05 11:03:14.593 : Registering solution!
VERBOSE 2010-02-05 11:03:14.593 : Server (2096): Action started: Resume
VERBOSE 2010-02-05 11:03:14.593 : Server (2096): Action completed: Resume elapsed: 0 ms pending actions: 0
VERBOSE 2010-02-05 11:03:14.784 : Server (2096): AssemblyLocator.CurrentDomain_AssemblyResolve() - CLR could not resolve: mscorlib.XmlSerializers, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
VERBOSE 2010-02-05 11:03:14.784 : Server (2096): AssemblyLocator.CurrentDomain_AssemblyResolve() - Trying to load assembly normally
VERBOSE 2010-02-05 11:03:14.804 : Server (2096): AssemblyLocator.CurrentDomain_AssemblyResolve() - CLR could not resolve: mscorlib.XmlSerializers, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
VERBOSE 2010-02-05 11:03:15.284 : Server (2096): Action started: OpenSolution
VERBOSE 2010-02-05 11:03:15.334 : Server (2096): Action completed: OpenSolution elapsed: 57 ms pending actions: 0
VERBOSE 2010-02-05 11:03:15.344 : Server (2096): Action started: Recheck
VERBOSE 2010-02-05 11:03:15.344 : Server (2096): Action completed: Recheck elapsed: 0 ms pending actions: 0
VERBOSE 2010-02-05 11:03:15.675 : VSSolutionService.RaiseSolutionEvents() - End executing events: e54dbd8d-c782-4fec-83bd-ea4b0899f8a0
VERBOSE 2010-02-05 11:03:15.685 : Server (2096): Action started: RequestContext
VERBOSE 2010-02-05 11:03:15.685 : Server (2096): Action completed: RequestContext elapsed: 0 ms pending actions: 0
VERBOSE 2010-02-05 11:03:15.685 : Server (2096): Action started: RequestContext
VERBOSE 2010-02-05 11:03:15.685 : Server (2096): Action completed: RequestContext elapsed: 0 ms pending actions: 0
VERBOSE 2010-02-05 11:03:16.476 : Server (2096): Action started: RequestContext
VERBOSE 2010-02-05 11:03:16.476 : Server (2096): Action completed: RequestContext elapsed: 0 ms pending actions: 0
VERBOSE 2010-02-05 11:03:20.542 : Server (2096): JustCodeEngineModuleFactory.CreateAnalyzerModules() - Registered analyzer module: CodeAnalysers.CodeColorization.SyntaxColorizationAnalyzer
VERBOSE 2010-02-05 11:03:20.542 : Server (2096): JustCodeEngineModuleFactory.CreateAnalyzerModules() - Registered analyzer module: Telerik.JustCode.CodeAnalyzers.CSWarningAnalyzer
VERBOSE 2010-02-05 11:03:20.542 : Server (2096): JustCodeEngineModuleFactory.CreateAnalyzerModules() - Registered analyzer module: Telerik.JustCode.CodeAnalyzers.OverriddenMembersMarkerAnalyzer
VERBOSE 2010-02-05 11:03:20.542 : Server (2096): JustCodeEngineModuleFactory.CreateAnalyzerModules() - Registered analyzer module: Telerik.JustCode.CodeAnalyzers.OverridingMembersMarkerAnalyzer
VERBOSE 2010-02-05 11:03:20.572 : Server (2096): JustCodeEngineModuleFactory.CreateCommandModules() - Registered command module: Telerik.JustCode.Selection.ExpandSelection
VERBOSE 2010-02-05 11:03:20.572 : Server (2096): JustCodeEngineModuleFactory.CreateCommandModules() - Registered command module: Telerik.JustCode.CodeNavigation.FindUsages
VERBOSE 2010-02-05 11:03:20.572 : Server (2096): JustCodeEngineModuleFactory.CreateCommandModules() - Registered command module: Telerik.JustCode.CodeNavigation.SearchApi
VERBOSE 2010-02-05 11:03:20.572 : Server (2096): JustCodeEngineModuleFactory.CreateCommandModules() - Registered command module: Telerik.JustCode.CodeNavigation.SearchFiles
VERBOSE 2010-02-05 11:03:20.572 : Server (2096): JustCodeEngineModuleFactory.CreateCommandModules() - Registered command module: Telerik.JustCode.CodeNavigation.SearchSymbols
VERBOSE 2010-02-05 11:03:20.572 : Server (2096): JustCodeEngineModuleFactory.CreateCommandModules() - Registered command module: Telerik.JustCode.CodeTemplates.TemplateProcessor
VERBOSE 2010-02-05 11:03:20.572 : Server (2096): JustCodeEngineModuleFactory.CreateCommandModules() - Registered command module: Telerik.JustCode.Formatter.CodeFormatter
VERBOSE 2010-02-05 11:03:20.572 : Server (2096): JustCodeEngineModuleFactory.CreateCommandModules() - Registered command module: Telerik.JustCode.QuickFixes.QuickFixesModule
VERBOSE 2010-02-05 11:03:20.572 : Server (2096): JustCodeEngineModuleFactory.CreateCommandModules() - Registered command module: Telerik.JustCode.Refactoring.ChangeSignatureRefactoring
VERBOSE 2010-02-05 11:03:20.572 : Server (2096): JustCodeEngineModuleFactory.CreateCommandModules() - Registered command module: Telerik.JustCode.Refactoring.CreateSetterGetterConstructorRefactoring
VERBOSE 2010-02-05 11:03:20.572 : Server (2096): JustCodeEngineModuleFactory.CreateCommandModules() - Registered command module: Telerik.JustCode.Refactoring.DuplicateText
VERBOSE 2010-02-05 11:03:20.572 : Server (2096): JustCodeEngineModuleFactory.CreateCommandModules() - Registered command module: Telerik.JustCode.Refactoring.ExtractMethodRefactoring
VERBOSE 2010-02-05 11:03:20.572 : Server (2096): JustCodeEngineModuleFactory.CreateCommandModules() - Registered command module: Telerik.JustCode.Refactoring.ImplementMembersRefactoring
VERBOSE 2010-02-05 11:03:20.572 : Server (2096): JustCodeEngineModuleFactory.CreateCommandModules() - Registered command module: Telerik.JustCode.Refactoring.InlineVariableRefactoring
VERBOSE 2010-02-05 11:03:20.572 : Server (2096): JustCodeEngineModuleFactory.CreateCommandModules() - Registered command module: Telerik.JustCode.Refactoring.IntroduceField
VERBOSE 2010-02-05 11:03:20.572 : Server (2096): JustCodeEngineModuleFactory.CreateCommandModules() - Registered command module: Telerik.JustCode.Refactoring.IntroduceVariable
VERBOSE 2010-02-05 11:03:20.572 : Server (2096): JustCodeEngineModuleFactory.CreateCommandModules() - Registered command module: Telerik.JustCode.Refactoring.Move
VERBOSE 2010-02-05 11:03:20.572 : Server (2096): JustCodeEngineModuleFactory.CreateCommandModules() - Registered command module: Telerik.JustCode.Refactoring.OrganizeUsingsRefactoring
VERBOSE 2010-02-05 11:03:20.572 : Server (2096): JustCodeEngineModuleFactory.CreateCommandModules() - Registered command module: Telerik.JustCode.Refactoring.RenameRefactoring
VERBOSE 2010-02-05 11:03:20.862 : Server (2096): AssemblyLocator.CurrentDomain_AssemblyResolve() - CLR could not resolve: mscorlib.XmlSerializers, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
VERBOSE 2010-02-05 11:03:20.862 : Server (2096): AssemblyLocator.CurrentDomain_AssemblyResolve() - Trying to load assembly normally
VERBOSE 2010-02-05 11:03:20.862 : Server (2096): AssemblyLocator.CurrentDomain_AssemblyResolve() - CLR could not resolve: mscorlib.XmlSerializers, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
VERBOSE 2010-02-05 11:03:21.253 : Server (2096): AssemblyLocator.CurrentDomain_AssemblyResolve() - CLR could not resolve: mscorlib.XmlSerializers, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
VERBOSE 2010-02-05 11:03:21.253 : Server (2096): AssemblyLocator.CurrentDomain_AssemblyResolve() - Trying to load assembly normally
VERBOSE 2010-02-05 11:03:21.263 : Server (2096): AssemblyLocator.CurrentDomain_AssemblyResolve() - CLR could not resolve: mscorlib.XmlSerializers, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
VERBOSE 2010-02-05 11:03:21.674 : Server (2096): AssemblyLocator.CurrentDomain_AssemblyResolve() - CLR could not resolve: Telerik.JustCode.CodeTemplates, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
VERBOSE 2010-02-05 11:03:21.674 : Server (2096): AssemblyLocator.CurrentDomain_AssemblyResolve() - Returning cached assembly
VERBOSE 2010-02-05 11:03:21.704 : Server (2096): AssemblyLocator.CurrentDomain_AssemblyResolve() - CLR could not resolve: Telerik.JustCode.CommonLanguageModel.Data.XmlSerializers, Version=2010.1.125.1, Culture=neutral, PublicKeyToken=null
VERBOSE 2010-02-05 11:03:21.704 : Server (2096): AssemblyLocator.CurrentDomain_AssemblyResolve() - Trying to load assembly normally
VERBOSE 2010-02-05 11:03:21.724 : Server (2096): AssemblyLocator.CurrentDomain_AssemblyResolve() - CLR could not resolve: Telerik.JustCode.CommonLanguageModel.Data.XmlSerializers, Version=2010.1.125.1, Culture=neutral, PublicKeyToken=null
VERBOSE 2010-02-05 11:03:21.724 : Server (2096): AssemblyLocator.CurrentDomain_AssemblyResolve() - CLR could not resolve: Telerik.JustCode.CommonLanguageModel.Data.XmlSerializers
VERBOSE 2010-02-05 11:03:21.724 : Server (2096): AssemblyLocator.CurrentDomain_AssemblyResolve() - Trying to load assembly normally
VERBOSE 2010-02-05 11:03:21.724 : Server (2096): AssemblyLocator.CurrentDomain_AssemblyResolve() - CLR could not resolve: Telerik.JustCode.CommonLanguageModel.Data.XmlSerializers
VERBOSE 2010-02-05 11:03:22.134 : Server (2096): User settings got from the CLIENT
VERBOSE 2010-02-05 11:03:23.146 : Server (2096): CLMEngine.MainLoop() - Engine woke up - dogetcontext: True dorecheck: True
VERBOSE 2010-02-05 11:03:23.186 : Server (2096): CLMEngine.MainLoop() - Project change
VERBOSE 2010-02-05 11:03:23.186 : Server (2096): CLMEngine.MainLoop() - Project change - new model: Assembly C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Data.SqlXml.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Data.SqlXml.dll), checked False
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Data.SqlXml.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Xml.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Data.SqlXml.dll .Net Binary

Assembly C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Xml.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Xml.dll), checked False
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Xml.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Data.SqlXml.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Configuration.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Xml.dll .Net Binary

Assembly C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Security.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Security.dll), checked False
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Security.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Xml.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Security.dll .Net Binary

Assembly C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Configuration.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Configuration.dll), checked False
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Configuration.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Xml.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Security.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Configuration.dll .Net Binary

Assembly C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll), checked False
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Configuration.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Xml.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll .Net Binary

Assembly C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Drawing.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Drawing.dll), checked False
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Drawing.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Drawing.dll .Net Binary

Assembly C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Accessibility.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Accessibility.dll), checked False
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Accessibility.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Accessibility.dll .Net Binary

Assembly C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Runtime.Serialization.Formatters.Soap.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Runtime.Serialization.Formatters.Soap.dll), checked False
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Runtime.Serialization.Formatters.Soap.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Xml.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Runtime.Serialization.Formatters.Soap.dll .Net Binary

Assembly C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Windows.Forms.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Windows.Forms.dll), checked False
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Windows.Forms.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Drawing.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Security.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Accessibility.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Configuration.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Xml.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Runtime.Serialization.Formatters.Soap.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Deployment.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Windows.Forms.dll .Net Binary

Assembly C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Deployment.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Deployment.dll), checked False
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Deployment.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Windows.Forms.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Xml.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Security.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Drawing.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Deployment.dll .Net Binary

Assembly C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.VisualC.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.VisualC.dll), checked False
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.VisualC.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.VisualC.dll .Net Binary

Assembly C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.DirectoryServices.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.DirectoryServices.dll), checked False
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.DirectoryServices.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Configuration.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Xml.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.DirectoryServices.dll .Net Binary

Assembly C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.EnterpriseServices.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.EnterpriseServices.dll), checked False
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.EnterpriseServices.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Transactions.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Xml.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.DirectoryServices.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Runtime.Remoting.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.VisualC.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.EnterpriseServices.dll .Net Binary

Assembly C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Transactions.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Transactions.dll), checked False
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Transactions.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Configuration.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Xml.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.EnterpriseServices.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Transactions.dll .Net Binary

Assembly C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Data.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Data.dll), checked False
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Data.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.VisualC.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Xml.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Transactions.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.EnterpriseServices.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Configuration.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Data.dll .Net Binary

Assembly C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Drawing.Design.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Drawing.Design.dll), checked False
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Drawing.Design.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Drawing.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Windows.Forms.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Drawing.Design.dll .Net Binary

Assembly C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Data.OracleClient.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Data.OracleClient.dll), checked False
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Data.OracleClient.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Data.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Transactions.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.EnterpriseServices.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Configuration.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Data.OracleClient.dll .Net Binary

Assembly C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Web.RegularExpressions.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Web.RegularExpressions.dll), checked False
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Web.RegularExpressions.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Web.RegularExpressions.dll .Net Binary

Assembly C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Design.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Design.dll), checked False
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Design.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Data.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Xml.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Drawing.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Windows.Forms.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Drawing.Design.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Web.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Configuration.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Data.OracleClient.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Runtime.Serialization.Formatters.Soap.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Accessibility.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Web.RegularExpressions.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Design.dll .Net Binary

Assembly C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Web.Services.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Web.Services.dll), checked False
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Web.Services.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Xml.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Web.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Configuration.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.EnterpriseServices.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.DirectoryServices.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Design.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Data.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Web.Services.dll .Net Binary

Assembly C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.DirectoryServices.Protocols.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.DirectoryServices.Protocols.dll), checked False
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.DirectoryServices.Protocols.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Xml.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.DirectoryServices.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.DirectoryServices.Protocols.dll .Net Binary

Assembly C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Configuration.Install.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Configuration.Install.dll), checked False
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Configuration.Install.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Runtime.Serialization.Formatters.Soap.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Windows.Forms.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Configuration.Install.dll .Net Binary

Assembly C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.ServiceProcess.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.ServiceProcess.dll), checked False
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.ServiceProcess.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Configuration.Install.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Windows.Forms.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Drawing.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.ServiceProcess.dll .Net Binary

Assembly C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Web.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Web.dll), checked False
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Web.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Configuration.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Drawing.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Xml.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Data.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Web.Services.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.DirectoryServices.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.DirectoryServices.Protocols.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.EnterpriseServices.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Design.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.ServiceProcess.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Windows.Forms.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Web.RegularExpressions.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Web.dll .Net Binary

Assembly C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Runtime.Remoting.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Runtime.Remoting.dll), checked False
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Runtime.Remoting.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Web.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Runtime.Serialization.Formatters.Soap.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Xml.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.DirectoryServices.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Runtime.Remoting.dll .Net Binary

Assembly C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.Vsa.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.Vsa.dll), checked False
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.Vsa.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.Vsa.dll .Net Binary

Assembly C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.JScript.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.JScript.dll), checked False
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.JScript.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.Vsa.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Xml.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.JScript.dll .Net Binary

Assembly C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Management.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Management.dll), checked False
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Management.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Configuration.Install.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.JScript.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Management.dll .Net Binary

Assembly C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\microsoft.visualbasic.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\microsoft.visualbasic.dll), checked False
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\microsoft.visualbasic.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Deployment.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Windows.Forms.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Runtime.Remoting.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Management.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Drawing.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Web.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\microsoft.visualbasic.dll .Net Binary

Assembly C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\System.Core.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\System.Core.dll), checked False
References C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\System.Core.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Security.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Xml.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\System.Core.dll .Net Binary

Assembly C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\System.Xml.Linq.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\System.Xml.Linq.dll), checked False
References C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\System.Xml.Linq.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Xml.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\System.Core.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\System.Xml.Linq.dll .Net Binary

Assembly C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\System.Data.DataSetExtensions.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\System.Data.DataSetExtensions.dll), checked False
References C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\System.Data.DataSetExtensions.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Data.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\System.Core.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\System.Data.DataSetExtensions.dll .Net Binary

Assembly C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\obj\Debug\Interop.Accessibility.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\obj\Debug\Interop.Accessibility.dll), checked False
References C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\obj\Debug\Interop.Accessibility.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\obj\Debug\Interop.Accessibility.dll .Net Binary

Assembly C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\obj\Debug\Interop.VBA.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\obj\Debug\Interop.VBA.dll), checked False
References C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\obj\Debug\Interop.VBA.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\obj\Debug\Interop.VBA.dll .Net Binary

Assembly C:\WINDOWS\assembly\GAC\Microsoft.mshtml\7.0.3300.0__b03f5f7f11d50a3a\Microsoft.mshtml.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\WINDOWS\assembly\GAC\Microsoft.mshtml\7.0.3300.0__b03f5f7f11d50a3a\Microsoft.mshtml.dll), checked False
References C:\WINDOWS\assembly\GAC\Microsoft.mshtml\7.0.3300.0__b03f5f7f11d50a3a\Microsoft.mshtml.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\WINDOWS\assembly\GAC\Microsoft.mshtml\7.0.3300.0__b03f5f7f11d50a3a\Microsoft.mshtml.dll .Net Binary

Assembly C:\WINDOWS\assembly\GAC\stdole\7.0.3300.0__b03f5f7f11d50a3a\stdole.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\WINDOWS\assembly\GAC\stdole\7.0.3300.0__b03f5f7f11d50a3a\stdole.dll), checked False
References C:\WINDOWS\assembly\GAC\stdole\7.0.3300.0__b03f5f7f11d50a3a\stdole.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\WINDOWS\assembly\GAC\stdole\7.0.3300.0__b03f5f7f11d50a3a\stdole.dll .Net Binary

Assembly C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\obj\Debug\Interop.SHDocVw.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\obj\Debug\Interop.SHDocVw.dll), checked False
References C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\obj\Debug\Interop.SHDocVw.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\obj\Debug\Interop.SHDocVw.dll .Net Binary

Assembly C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\obj\Debug\Interop.WS32Lib.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\obj\Debug\Interop.WS32Lib.dll), checked False
References C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\obj\Debug\Interop.WS32Lib.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\obj\Debug\Interop.WS32Lib.dll .Net Binary

Assembly C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\obj\Debug\Interop.BostonWorkStation70.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll (C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\obj\Debug\Interop.BostonWorkStation70.dll), checked False
References C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\obj\Debug\Interop.BostonWorkStation70.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\obj\Debug\Interop.VBA.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\assembly\GAC\Microsoft.mshtml\7.0.3300.0__b03f5f7f11d50a3a\Microsoft.mshtml.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\WINDOWS\assembly\GAC\stdole\7.0.3300.0__b03f5f7f11d50a3a\stdole.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\obj\Debug\Interop.SHDocVw.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\obj\Debug\Interop.WS32Lib.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
References C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\obj\Debug\Interop.Accessibility.dll#C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll
C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\obj\Debug\Interop.BostonWorkStation70.dll .Net Binary

Assembly C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\JavaBwsPrototype.vbproj (C:\CiBAProjects\JavaBwsPrototype\JavaBwsPrototype\JavaBwsPrototype.vbproj), checked True

2 Answers, 1 is accepted

Sort by
0
Tsviatko Yovtchev
Telerik team
answered on 10 Feb 2010, 04:18 PM
Hi Troy,

 Thanks a bunch for letting us know about that. It is a confirmed issue now and we'll fix it in a couple of weeks at latest. I beg your pardon for the inconvenience

Best wishes,
Tsviatko Yovtchev
the Telerik team

Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Follow the status of features or bugs in PITS and vote for them to affect their priority.
0
Troy Brumley
Top achievements
Rank 1
answered on 10 Feb 2010, 06:28 PM
Thanks, no rush at my end.  I'm enjoying JustCode most of the time, keep up the good work.

I'll watch for the update.
Tags
General Discussions
Asked by
Troy Brumley
Top achievements
Rank 1
Answers by
Tsviatko Yovtchev
Telerik team
Troy Brumley
Top achievements
Rank 1
Share this question
or