var fDesc=new Array(); fDesc[0] = "With PackageMaker you can easily Create file package from changesets. After you are connected to the TFS, write the 'changesets' and chose the right workspace from the list.
As we start the run we begin from the oldest "changeset" and forward, the reason is to take the newest file.
For every change in the 'changeset' the APP starts to download the 'changeset' files.
There are Web files and DLL/EXE files; there are several differences when dealing with those kinds of files:
Web files - after getting the path of the file from the source control, the APP goes backward and searches the 'web.config', if the 'web.config' was found, the APP downloads the file directly from the source control.
Not Web files – if the APP searches for 'web.config' and returns 'false' we assumes the files are related to a DLL or EXE, the app searches for "proj" files in the path and when the files are found. The APP takes the 'AssemblyName' of the output file.
After getting the 'AssemblyName', the APP takes the file from the local workspace. (It's important to perform 'get latest' in order to get the most updated file)."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }