Skip to content

Commit ae03b23

Browse files
Replicate fix implemented in #904
1 parent 033264d commit ae03b23

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/developer-tools/options.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ But it is possible to redefine this behavior by changing `DeveloperToolsOptions.
3333
```csharp
3434
this.AttachDeveloperTools(o =>
3535
{
36-
o.Runner = DeveloperToolsOptions.DotNetTool;
36+
o.Runner = DeveloperToolsRunner.DotNetTool;
3737
});
3838
```
3939

4040
Possible options are:
4141

42-
1. `DeveloperToolsOptions.DotNetTool` - global .NET tool.
42+
1. `DeveloperToolsRunner.DotNetTool` - global .NET tool.
4343
2. `DeveloperToolsOptions.AppleBundle` - runs macOS bundle by its ID. To make it work, you need to run `Developer Tools` process directly at least once.
4444
3. `DeveloperToolsOptions.NoOp` - do nothing. This option assumes the `Developer Tools` application was started by the user manually.
4545
4. `DeveloperToolsRunner.CreateFromExecutable(string)` - run executable by full path. This option is not recommended, unless you prefer a custom installation of the tool.

0 commit comments

Comments
 (0)