From 9aba25420e341cf564c9cfe736839f548747d24c Mon Sep 17 00:00:00 2001 From: "kkm (aka Kirill Katsnelson)" Date: Tue, 11 Dec 2018 00:14:23 -0800 Subject: [PATCH] Fix capitalization of MSBuild --- docs/core/tools/csproj.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/core/tools/csproj.md b/docs/core/tools/csproj.md index dba6615d68f58..1f9eadb76aa3f 100644 --- a/docs/core/tools/csproj.md +++ b/docs/core/tools/csproj.md @@ -173,7 +173,7 @@ The following example specifies the fallbacks only for the `netcoreapp2.1` targe ``` ## NuGet metadata properties -With the move to MSbuild, we have moved the input metadata that is used when packing a NuGet package from *project.json* to *.csproj* files. The inputs are MSBuild properties so they have to go within a `` group. The following is the list of properties that are used as inputs to the packing process when using the `dotnet pack` command or the `Pack` MSBuild target that is part of the SDK. +With the move to MSBuild, we have moved the input metadata that is used when packing a NuGet package from *project.json* to *.csproj* files. The inputs are MSBuild properties so they have to go within a `` group. The following is the list of properties that are used as inputs to the packing process when using the `dotnet pack` command or the `Pack` MSBuild target that is part of the SDK. ### IsPackable A Boolean value that specifies whether the project can be packed. The default value is `true`.