diff --git a/aspnet/fundamentals/environments.rst b/aspnet/fundamentals/environments.rst index 24d6646419..446b8c795e 100644 --- a/aspnet/fundamentals/environments.rst +++ b/aspnet/fundamentals/environments.rst @@ -17,7 +17,7 @@ Development, Staging, Production ASP.NET 5 references a particular `environment variable `_, ``ASPNET_ENV``, to describe the environment the application is currently running in. This variable can be set to any value you like, but three values are used by convention: ``Development``, ``Staging``, and ``Production``. You will find these values used in the samples and templates provided with ASP.NET 5. -The current environment setting can be detected programmatically from within ASP.NET 5. In addition, ASP.NET MVC 6 introduces an `Environment Tag Helper `_ that allows MVC Views to include certain sections based on the current application environment. +The current environment setting can be detected programmatically from within ASP.NET 5. In addition, ASP.NET MVC 6 introduces an :ref:`Environment Tag Helper ` that allows MVC Views to include certain sections based on the current application environment. .. note:: The specified environment name is case insensitive. Whether you set the variable to ``Development`` or ``development`` or ``DEVELOPMENT`` the results will be the same. diff --git a/aspnet/mvc.inv b/aspnet/mvc.inv index 32acf67352..e3467ad6c4 100644 Binary files a/aspnet/mvc.inv and b/aspnet/mvc.inv differ diff --git a/mvc/views/tag-helpers/index.rst b/mvc/views/tag-helpers/index.rst index b97510920f..e226adde1f 100644 --- a/mvc/views/tag-helpers/index.rst +++ b/mvc/views/tag-helpers/index.rst @@ -1,3 +1,5 @@ +.. _tag-helpers-index: + Tag Helpers -----------