.Net Core自带exe如何设置版本号和产品信息

How to set version number and product information in .Net Core self-contained exe

我有一个 .Net Core v2.2 项目,我设置 Publish 选项如下:

我还设置了Package信息:

同时修改.csproj文件如下:

生成的 (?) exe 的详细信息如下所示:

我还应该设置什么才能使这些信息不仅出现在 dll 文件中,而且还出现在 exe 文件中?

更新

根据可能的答案,即将推出的 .Net Core SDK 版本从 3.0 版开始有一个根本性的变化。经验证,此问答将有助于解决问题,而不是解释为什么做不到。

What else should I set to make those informations appear not only in the dll file but in the exe file as well?

我将 Visual Studio 2019 更新到版本 16.2.5(最新版本是 16.3.1)并安装 新的 .Net Core 3.0 SDK。之后生成的 exe包含了所有的版本信息,可以正常使用了。
SDK download link.