The list of AccuRev depots from <prog_name>.exe.config
.
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="Depots" type="AcUtils.DepotsSection, AcUtils, Version=1.6.4.0, Culture=neutral, PublicKeyToken=26470c2daf5c2e2f, processorArchitecture=MSIL" />
...
</configSections>
<Depots>
<depots>
<add depot="MARS" />
<add depot="JUPITER" />
<add depot="NEPTUNE" />
...
</depots>
</Depots>
<appSettings>
...
DepotsSection depotsSection = ConfigurationManager.GetSection("Depots") as DepotsSection;
DepotsCollection depotsCol = depotsSection.Depots;
- See also
- ActiveWSpaces.cs, StreamsCollection
Definition at line 48 of file DepotsCollection.cs.