2

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.

GroovyB
  • 91
  • 1
  • 6

1 Answers1

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

Herman
  • 2,832
  • 6
  • 25
  • 37
  • dotnet build -r win10-x64 does not make the .exe, only the .dll I have to use dotnet publish to get the .exe – GroovyB Sep 03 '18 at 10:12