From 58ccf3f7d592b28eaff3534b73a45d9d190ac8c8 Mon Sep 17 00:00:00 2001 From: Scott Addie Date: Fri, 6 Oct 2017 14:15:59 -0500 Subject: [PATCH] Treat "framework" as proper noun --- aspnetcore/hosting/windows-service.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/hosting/windows-service.md b/aspnetcore/hosting/windows-service.md index 4d57c05855..e11bb7116b 100644 --- a/aspnetcore/hosting/windows-service.md +++ b/aspnetcore/hosting/windows-service.md @@ -23,7 +23,7 @@ The recommended way to host an ASP.NET Core app on Windows when you don't use II ## Prerequisites -* The app must run on the .NET framework runtime. In the *.csproj* file, specify appropriate values for [TargetFramework](https://docs.microsoft.com/nuget/schema/target-frameworks) and [RuntimeIdentifier](https://docs.microsoft.com/dotnet/articles/core/rid-catalog). Here's an example: +* The app must run on the .NET Framework runtime. In the *.csproj* file, specify appropriate values for [TargetFramework](https://docs.microsoft.com/nuget/schema/target-frameworks) and [RuntimeIdentifier](https://docs.microsoft.com/dotnet/articles/core/rid-catalog). Here's an example: [!code-xml[](windows-service/sample/AspNetCoreService.csproj?range=3-6)]