Skip to content

Instantly share code, notes, and snippets.

View cfbarbero's full-sized avatar

Cris Barbero cfbarbero

View GitHub Profile
<?xml version="1.0" encoding="utf-8"?>
<Configuration>
<SolrConfigs>
<SolrConfig jobBoardCode="HC" solrJobUrlSlave="http://search.svc.ontargetjobs.com:8983/solr/hc_ent_jobs" solrJobUrlMaster="http://PCOSOLRMSTR01:8983/solr/hc_ent_jobs" />
<SolrConfig jobBoardCode="HEC" solrJobUrlSlave="http://search.svc.ontargetjobs.com:8983/solr/hec_jobs" solrJobUrlMaster="http://PCOSOLRMSTR01:8983/solr/hec_jobs" />
</SolrConfig>
</Configuration>
public class Program
{
public void Main(string[] args)
{
Configuration.Init()
.AddJsonFile("Config\\solr.json")
.AddXmlFile("Config\\omniture.xml");
new Runner().DoSomething();
}