How to add copyright to published EXE (.Net Core)

2019-07-26 23:00发布

问题:

How can I add copyright/company information to the EXE generated when publishing a .Net Core app?

Actually, by adding those information in the .csproj, the generated DLL is updated, but not the EXE.

回答1:

Right Click the project in solution select "Properties" Under Package Tab. Change Company & Copyright.

You got to use "dotnet build -r win10-x64" to produce .exe



标签: .net-core