I have this piece of batch file :
@echo off
set xx=7
echo the version is %xx%
I wand to use it in a pre-build event in VS2010 - as an integer :
MY_INT = $(xx)
but it's value is a string , how can I convert the string value into an integer value in the batch file?
thanks!