From 182b1660985b61ec7d457544b116420f31ad8f58 Mon Sep 17 00:00:00 2001 From: Rick Anderson Date: Tue, 16 Jul 2019 21:26:22 -0700 Subject: [PATCH] remove excessive your (#13326) * remove excessive your * work * work --- aspnetcore/fundamentals/static-files.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/aspnetcore/fundamentals/static-files.md b/aspnetcore/fundamentals/static-files.md index b682b2fc85..b8205e84b3 100644 --- a/aspnetcore/fundamentals/static-files.md +++ b/aspnetcore/fundamentals/static-files.md @@ -4,7 +4,7 @@ author: rick-anderson description: Learn how to serve and secure static files and configure static file hosting middleware behaviors in an ASP.NET Core web app. ms.author: riande ms.custom: mvc -ms.date: 04/08/2019 +ms.date: 07/8/2019 uid: fundamentals/static-files --- # Static files in ASP.NET Core @@ -17,7 +17,7 @@ Static files, such as HTML, CSS, images, and JavaScript, are assets an ASP.NET C ## Serve static files -Static files are stored within your project's web root directory. The default directory is *\/wwwroot*, but it can be changed via the [UseWebRoot](/dotnet/api/microsoft.aspnetcore.hosting.hostingabstractionswebhostbuilderextensions.usewebroot#Microsoft_AspNetCore_Hosting_HostingAbstractionsWebHostBuilderExtensions_UseWebRoot_Microsoft_AspNetCore_Hosting_IWebHostBuilder_System_String_) method. See [Content root](xref:fundamentals/index#content-root) and [Web root](xref:fundamentals/index#web-root) for more information. +Static files are stored within the project's web root directory. The default directory is *\/wwwroot*, but it can be changed via the [UseWebRoot](/dotnet/api/microsoft.aspnetcore.hosting.hostingabstractionswebhostbuilderextensions.usewebroot#Microsoft_AspNetCore_Hosting_HostingAbstractionsWebHostBuilderExtensions_UseWebRoot_Microsoft_AspNetCore_Hosting_IWebHostBuilder_System_String_) method. See [Content root](xref:fundamentals/index#content-root) and [Web root](xref:fundamentals/index#web-root) for more information. The app's web host must be made aware of the content root directory. @@ -48,19 +48,19 @@ The URI format to access a file in the *images* subfolder is *http://\