Skip to content

Instantly share code, notes, and snippets.

@cfbarbero
Created July 14, 2014 17:06
Show Gist options
  • Save cfbarbero/40efc34a2dce7123da8b to your computer and use it in GitHub Desktop.
Save cfbarbero/40efc34a2dce7123da8b to your computer and use it in GitHub Desktop.
public class Program
{
public void Main(string[] args)
{
Configuration.Init()
.AddJsonFile("Config\\solr.json")
.AddXmlFile("Config\\omniture.xml");
new Runner().DoSomething();
}
}
public class Runner
{
public void DoSomething(){
var solrConfig = Configuration.Get<SolrConfig>("solr");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment