Home > Blockchain >  How to embed the version information in the executable file name when building C# application in Vis
How to embed the version information in the executable file name when building C# application in Vis

Time:01-01

This question is a complement for the post post build event

pseudo

  1. Maybe you can create another console renamer.exe which reads version defined in AssemblyInformationalVersionAttribute or in AssemblyVersionAttribute of your app and renames it and then call that renamer.exe from Post build event command line
  2. write a powershell script to rename the newly built exe and call that script from Post build event command line
  • Related