I have a file called "build.sbt":
lazy val root = (project in file(".")). settings( name := "AppName", version := "1.0", )
I compile such a source in PowerShell:
$process = Start-Process -FilePath (Join-Path $sbtHome "sbt.bat") -ArgumentList "assembly" -Wait -PassThru -WindowStyle Hidden
Then I get this jar file "AppName-assembly-1.0.jar". Then right-click on it and select "Properties" and then the "Details" tab. And there I see neither the name of the application, nor the version information: 
Q: How to make Version and AppName be saved / displayed in the properties window "Details" tab, not only be reflected in the banner name?
In the example, for example, in one of the app.exe files: 
source share