How to get the build version without locking the file?

Possible duplicate:
How to load an assembly without using Assembly.Load?

How to get the build version without locking the file?

+3
source share
1 answer

Designed by

var targetVersion = AssemblyName.GetAssemblyName(filePath).Version;
+4
source

Source: https://habr.com/ru/post/1789130/


All Articles