| 88 | === Internal Error About 'path' === |
| 89 | |
| 90 | Upon compiling you get this error: |
| 91 | {{{ |
| 92 | error: COBRA INTERNAL ERROR / ArgumentException / Item has already been added. Key in dictionary: 'path' Key being added: 'path' |
| 93 | }}} |
| 94 | |
| 95 | If you compile with -reveal-internal-exceptions you get this exception: |
| 96 | {{{ |
| 97 | Unhandled Exception: |
| 98 | |
| 99 | System.ArgumentException: Item has already been added. Key in dictionary: 'path' Key being added: 'path' |
| 100 | at System.Collections.Hashtable.Insert(Object key, Object nvalue, Boolean add) |
| 101 | at System.Collections.Hashtable.Add(Object key, Object value) |
| 102 | at System.Collections.Specialized.StringDictionary.Add(String key, String value) |
| 103 | at System.CodeDom.Compiler.Executor.ExecWaitWithCaptureUnimpersonated(SafeUserTokenHandle userToken, |
| 104 | String cmd, String currentDir, TempFileCollection tempFiles, String& outputName, String& errorName, |
| 105 | String trueCmdLine) |
| 106 | ... |
| 107 | }}} |
| 108 | |
| 109 | Cobra is your PATH twice such as seeing "C:\Cobra\bin" in your PATH more than one time. Fix the path. |
| 110 | |
| 111 | |