forked from Vantiv/litle-sdk-for-dotNet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkit.bat
16 lines (15 loc) · 763 Bytes
/
kit.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
IF "%1"==[] (
echo "Requires command line argument to be version to zip"
exit /b
)
copy LitleSdkForNet\LitleSdkForNet\bin\Release\LitleSdkForNet.dll .\
copy LitleSdkForNet\LitleSdkForNet\bin\Release\LitleSdkForNet.dll.config .\
copy LitleSdkForNet\LitleSdkForNet\bin\Release\DiffieHellman.dll .\
copy LitleSdkForNet\LitleSdkForNet\bin\Release\Tamir.SharpSSH.dll .\
copy LitleSdkForNet\LitleSdkForNet\bin\Release\Org.Mentalis.Security.dll .\
"C:\Program Files\7-Zip\7z.exe" a LitleSdkForNet-%1.zip CHANGELOG LICENSE LitleSdkForNet.dll LitleSdkForNet.dll.config README.md DiffieHellman.dll Tamir.SharpSSH.dll Org.Mentalis.Security.dll
del LitleSdkForNet.dll
del LitleSdkForNet.dll.config
del DiffieHellman.dll
del Tamir.SharpSSH.dll
del Org.Mentalis.Security.dll