set batVar_Parameters=/Developer /Test=0
if not '%batVar_Iteration%' equ '-1' (
set batVar_Parameters=%batVar_Parameters% /Iteration=%batVar_Iteration%
)
if not '%1' equ '' (
set batVar_Parameters=%batVar_Parameters% /DeveloperBuildIniFile=%1
)
I’m translating Batch File to C# and I face with an expression “=/xyz” depicted above. What does it mean exactly?
“set abc=/xyz” means nothing special, it’s just “=” followed by the contents of the variable, which happened to start with “/”. It’s probably meant as a parameter to a program, like in “dir /a”.
Try this:
It’ll give you: