Skip to content

Commit e0ae7f9

Browse files
authored
Updated console output to match code (#30006)
* Updated console output to match code Line 51 asks the user to modify the program.cs output to the string "Hello World with C#" but line 67 stated you should get "Hello World with C#!" as output. * Tweaked another reference to the output further down
1 parent 22aedbe commit e0ae7f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/core/tutorials/cli-templates-create-project-template.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ dotnet run
6464
You get the following output.
6565

6666
```console
67-
Hello World with C#!
67+
Hello World with C#
6868
```
6969

7070
You can delete the _obj_ and _bin_ folders created by using `dotnet run`. Deleting these files ensures your template only includes the files related to your template and not any files that result from a build action.
@@ -153,7 +153,7 @@ Now that you have a project template installed, test it.
153153
You get the following output.
154154
155155
```console
156-
Hello World with C#!
156+
Hello World with C#
157157
```
158158
159159
Congratulations! You created and deployed a project template with .NET. In preparation for the next part of this tutorial series, you must uninstall the template you created. Make sure to delete all files from the _test_ folder too. This will get you back to a clean state ready for the next major section of this tutorial.

0 commit comments

Comments
 (0)