From b5525268ba34ad4abd090657043d129b567fde43 Mon Sep 17 00:00:00 2001 From: Scott Addie Date: Mon, 23 Nov 2015 20:57:45 -0600 Subject: [PATCH] Fix broken Environment Tag Helper link Link to new label in MVC index page --- aspnet/fundamentals/environments.rst | 2 +- aspnet/mvc.inv | Bin 476 -> 498 bytes mvc/views/tag-helpers/index.rst | 2 ++ 3 files changed, 3 insertions(+), 1 deletion(-) 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 32acf673522fb8e68bcae21a9959bdb3675bbaba..e3467ad6c40023fd67999e1ec1f4f73375bcd164 100644 GIT binary patch delta 379 zcmV->0fheC1M&lqfPb-WgD?=?{S_xQV;t0>OSgnnY6sG&MA?nG5VyugwxLDJ$JbzJ zpklM`y?gKOow+uaR$2<)f_3?`WEo1Jk6@A4Mz}WOcgE)GO8KyYv_dW}txyFph~Ga_ zIQBTnu|k!j;w=^G6S)&wQLdFUT1qr_ZZQF(rOwgrW?h|8;eY8j*#Gh1ZR7z{ImCA{ zQlJu^^fR{`t3lSc`!`wOO-L))rpL|UiOR9gl$4?{%;9uB+6er%)OHL$ z7Y%IR7Y#2}T#PQuhChu~Nf3k`v%Y(>&l=91?z-PI4dNZ_M;v=31i=(dBRE>PXak2{X53<1RsJXTNn2u(8Gil$ue;hXd>RNxRv>Y#pjVVt ZcgKazL!1**H2WtfR={fj$S*t~GUt-uxiSC% delta 357 zcmV-r0h<2u1Kb0UfPXPk!!Qu+{fe6*WfTtu4PD|;P&jxnlU|W8jzE??l5Frl=qdRg zPe7JzVl(bEcYC{gdtyo(QY*n(2gVlnf}T(Sxdnr)(cE@1yCOChTZx+$6L*f^D8{4i7Jo9uwFr)>J4h?M0)Cmzr9f?nPRT?}nHj z!RDj^?dIa)CCjr`Rn@Y)Q7R3Du%pIJPxe{EvFBa;J@Y``x1E)!QYS7j2+tLLDGvQv zgu8}|qCZ;ddtSpC9j8}ujKxAIbw|d=kYB2b#!ZJ9r8Ctc8Qh#GdvjNsGuXx|&8aZ) zB6wyo(dZ*`Sp=pWb;}tVI4cbYKR?>v*0uX|K3fwRq?%p+f8oA1xXuG0qa{YaN1PK{ DiEX6I 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 -----------