Skip to content

Commit

Permalink
Fix Creating a modular ASP.NET Core application tutorial (#14415)
Browse files Browse the repository at this point in the history
Emphasize that reference must be added from the applicaiton to the module
  • Loading branch information
xperiandri authored Oct 3, 2023
1 parent 5ee50ef commit 40fa134
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/docs/guides/create-modular-application-mvc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,9 @@ Create an empty folder, called `OrchardCore.Mvc`, that will contain our projects
Next, create the "Hello World" module.

```dotnet new ocmodulemvc -n OrchardCore.Mvc.HelloWorld```

Add a project reference to the web application that points to the module.

!!! important
Add a project reference to the web application that points to the module.

```dotnet add OrchardCore.Mvc.Web reference OrchardCore.Mvc.HelloWorld```

Expand Down

0 comments on commit 40fa134

Please sign in to comment.