You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tools/developer-tools/options.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,13 +33,13 @@ But it is possible to redefine this behavior by changing `DeveloperToolsOptions.
33
33
```csharp
34
34
this.AttachDeveloperTools(o=>
35
35
{
36
-
o.Runner=DeveloperToolsOptions.DotNetTool;
36
+
o.Runner=DeveloperToolsRunner.DotNetTool;
37
37
});
38
38
```
39
39
40
40
Possible options are:
41
41
42
-
1.`DeveloperToolsOptions.DotNetTool` - global .NET tool.
42
+
1.`DeveloperToolsRunner.DotNetTool` - global .NET tool.
43
43
2.`DeveloperToolsOptions.AppleBundle` - runs macOS bundle by its ID. To make it work, you need to run `Developer Tools` process directly at least once.
44
44
3.`DeveloperToolsOptions.NoOp` - do nothing. This option assumes the `Developer Tools` application was started by the user manually.
45
45
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