Hello,
I am attempting to automate the build of one of our applications and I am running into some problems with the cmdline runner recognizing my new updates. When I run the cmdline tool with the following arguments, it says that building wyUpdate and Building updates are successful.
.\wybuild.cmd.exe "$wypFile" /bu /bwu -add"$newVersionXML"
Where $wypFile is the current wyp file and $newVersionXML is the following XML File.
<?xml version="1.0"?>
-<Versions>
-<AddVersion>
<Version>17.10.18.1220</Version>
<Changes>These are all the changes!</Changes>
<InheritPrevRegistry/>
<InheritPrevActions/>
-<Files dir="basedir">
<Folder source="C:\My\Application\Directory" insideonly="true"/>
</Files>
</AddVersion>
</Versions>
Is my XML file OK? And do I also have to define the previous version that I am building from?
Thanks