Hi, I want to get vsn
from build folder after compiling, so I do not add a dep and get from Application
module.
For example: (_build/dev/lib/castore/ebin/castore.app
)
{application,castore,
[{applications,[kernel,stdlib,elixir,logger]},
{description,"Up-to-date CA certificate store."},
{modules,['Elixir.CAStore']},
{registered,[]},
{vsn,"0.1.17"}]}.
What is the best way to get {vsn,"0.1.17"}
from top file as a Tuple?
Thank you in advance