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: docs-src/commands.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ paket add InEngine.Core
28
28
29
29
Adding a class that implements **InEngine.Core.ICommand** is the simplest way to create a command.
30
30
31
-
```csharp
31
+
```c#
32
32
usingSystem;
33
33
usingInEngine.Core;
34
34
@@ -48,7 +48,7 @@ namespace MyCommandPlugin
48
48
Extending the **InEngine.Core.AbstractCommand** class adds extra functionality, like a logger, a progress bar, and the ability to schedule the command using the scheduler.
49
49
Minimally, the Run method should be overridden.
50
50
51
-
```csharp
51
+
```c#
52
52
usingSystem;
53
53
usingInEngine.Core;
54
54
@@ -72,7 +72,7 @@ Create a class that implements **InEngine.Core.IOptions** in the same assembly a
72
72
Add a VerbOptions attribute from the CommandLine namespace that defines the name of the command and optional help text.
73
73
The help text can be auto-generated from the attribute or manually specified in the GetUsage method.
0 commit comments