diff --git a/docs/configuration.md b/docs/configuration.md index c7e6a41..bcf9227 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -42,6 +42,7 @@ | EnableStaticManagedInstrumentation | `True`, `False` | `False` | Enable static managed instrumentation. | `True` | | EnableStaticManagedInstrumentationRestore | `True`, `False` | `True` | Enable static managed instrumentation restore. If enabled all instrumented files are restored after collection. | `True` | | SymbolSearchPaths | XML | | Additional paths to search for .pdb (symbol) files. Symbols must be found for modules to be instrumented. If .pdb files are in the same folder as the .dll or .exe files, they are automatically found. Otherwise, specify them here. Note that searching for symbols increases code coverage runtime. So keep this small and local. | `C:\Users\User\Documents\Visual Studio 2012\Projects\ProjectX\bin\Debug` | +| AllowedUsers | XML | | Supported only for .NET Framework. Additional users that will be able to access internal shared memory and pipes. | `UserName1` | | ModulePaths | XML | | Include and exclude lists for module paths.
Empty "Include" clauses imply all; empty "Exclude" clauses imply none. Each element in the list is a regular expression (ECMAScript syntax). See /visualstudio/ide/using-regular-expressions-in-visual-studio. An item must first match at least one entry in the include list to be included. Included items must then not match any entries in the exclude list to remain included. | `.*CPPUnitTestFramework.*` | | PublicKeyTokens | XML | | Include and exclude lists for public key tokens.
Matches the public key token of a signed assembly. | `^B77A5C561934E089$` | | CompanyNames | XML | | Include and exclude lists for company names.
Matches the company name property in the assembly. | `.*microsoft.*` | @@ -90,9 +91,13 @@ True True - C:\Users\User\Documents\Visual Studio 2012\Projects\ProjectX\bin\Debug - \\mybuildshare\builds\ProjectX + C:\Users\User\Documents\Visual Studio 2012\Projects\ProjectX\bin\Debug + \\mybuildshare\builds\ProjectX + + UserName1 + UserName2 + .*\.dll$