var fDesc=new Array();
fDesc[0] = "ClickOnceMore is an easy to use ClickOnce application that assists .Net developers in creating the manifest files necessary for an effective ClickOnce deployment.
Main features:
- Precise control of included files due to rule based inclusion
- Easy integration into your build process using the command line tool
- Enhanced automation and ease of use compared with Visual Studio or Mage
- Client management as sub directories on the end users machine can be specified
- Multiple build environments are supported through fully configurable macros
- Multi-developer teams are catered for through project based approach";
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 = '';
}
}