This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Program | |
{ | |
public void Main(string[] args) | |
{ | |
Configuration.Init() | |
.AddJsonFile("Config\\solr.json") | |
.AddXmlFile("Config\\omniture.xml"); | |
new Runner().DoSomething(); | |
} |
NewerOlder