Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/core/tools/global-tools-how-to-create.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ This is the first in a series of three tutorials. In this tutorial, you create a
```csharp
using System.Reflection;

namespace TeleprompterConsole;
namespace microsoft.botsay;

internal class Program
{
Expand All @@ -74,6 +74,8 @@ This is the first in a series of three tutorials. In this tutorial, you create a
}
```

The `using System.Reflection;` directive is needed by code that you add in the next step.

1. Replace the `Main` method with the following code to process the command-line arguments for the application.

```csharp
Expand Down