forked from Shane32/QRCoder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCheckBinaries.bat
More file actions
13 lines (10 loc) · 850 Bytes
/
CheckBinaries.bat
File metadata and controls
13 lines (10 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
echo Working dir: %cd%
certUtil -hashfile "QRCoder\bin\Release\net35\QRCoder.dll" md5
certUtil -hashfile "QRCoder\bin\Release\net40\QRCoder.dll" md5
certUtil -hashfile "QRCoder\bin\Release\netcore\QRCoder.dll" md5
certUtil -hashfile "QRCoder\bin\Release\netstandard2.0\QRCoder.dll" md5
powershell -Command "[Reflection.Assembly]::ReflectionOnlyLoadFrom(\"%cd%\QRCoder\bin\Release\net35\QRCoder.dll\").ImageRuntimeVersion"
powershell -Command "[Reflection.Assembly]::ReflectionOnlyLoadFrom(\"%cd%\QRCoder\bin\Release\net40\QRCoder.dll\").ImageRuntimeVersion"
powershell -Command "[Reflection.Assembly]::ReflectionOnlyLoadFrom(\"%cd%\QRCoder\bin\Release\netcore\QRCoder.dll\").ImageRuntimeVersion"
powershell -Command "[Reflection.Assembly]::ReflectionOnlyLoadFrom(\"%cd%\QRCoder\bin\Release\netstandard2.0\QRCoder.dll\").ImageRuntimeVersion"
pause