What is max length of summary and description?
此 Nuspec 参考解释了描述和摘要文本字段:https://docs.nuget.org/create/nuspec-reference
关于摘要,它说它是
A short description of the package. If specified, this shows up in the middle pane of the Add Package Dialog. If not specified, a truncated version of the description is used instead.
有谁知道摘要的最大长度、描述以及如果不提供摘要将使用描述中的多少个字符?
摘要或描述没有最大长度。如果未使用摘要,则使用所有描述。
但是显示的内容取决于"管理包"对话框的大小、文本中使用的字符大小、是否选择了行以及是否显示"安装"按钮、您使用的是 Visual Studio 2015 还是旧版本.所以没有定义为最大长度的字符数。
这似乎是特定于客户端实现的。例如,我刚从 nuget.org 的 Web API 上传一些带有长描述的包时出错。
对于 nuget.org,标签和描述不能超过 4000 个字符。
摘要也因客户而异。例如,Visual Studio 中的包管理器控制台使用控制台窗口的宽度来确定摘要的长度,而 Visual Studio 2017 的包管理器约为 197 个字符。 Nuget.org 目前使用 297 个字符。