diff --git a/docfx.json b/docfx.json index 895dad9fb331c..7dea922ec2bfa 100644 --- a/docfx.json +++ b/docfx.json @@ -190,7 +190,8 @@ "docs/csharp/language-reference/**/**.md": "language-reference", "docs/framework/additional-apis/**/**.md": "managed-reference", "docs/framework/unmanaged-api/**/**.md": "reference", - "docs/fsharp/language-reference/**/**.md": "language-reference" + "docs/fsharp/language-reference/**/**.md": "language-reference", + "docs/core/tutorials/**.md": "tutorial" }, "dev_langs": { "docs/fsharp/**/**.md": ["fsharp"], diff --git a/docs/core/tutorials/libraries.md b/docs/core/tutorials/libraries.md index ae6146f974413..3508e3424f204 100644 --- a/docs/core/tutorials/libraries.md +++ b/docs/core/tutorials/libraries.md @@ -2,6 +2,7 @@ title: Develop libraries with the .NET Core CLI description: Learn how to create .NET Core libraries using the .NET Core CLI. You'll create a library that supports multiple frameworks. author: cartermp +ms.topic: how-to ms.date: 05/01/2017 --- # Develop libraries with the .NET Core CLI diff --git a/docs/core/tutorials/netcore-hosting.md b/docs/core/tutorials/netcore-hosting.md index ee74a292d5551..fd04c505221c2 100644 --- a/docs/core/tutorials/netcore-hosting.md +++ b/docs/core/tutorials/netcore-hosting.md @@ -2,6 +2,7 @@ title: Write a custom .NET Core runtime host description: Learn to host the .NET Core runtime from native code to support advanced scenarios that require controlling how the .NET Core runtime works. author: mjrousos +ms.topic: how-to ms.date: 12/21/2018 --- # Write a custom .NET Core host to control the .NET runtime from your native code