Example #1
0
 public void Test1()
 {
     ReflectionProcessor rp = new ReflectionProcessor();
     var model = new Workspace("Test").GetModel();
     rp.Process(typeof(Tests).GetTypeInfo().Assembly, model);
     Assert.True(model.Elements.Any());
 }
 public JekyllExporterConfiguration(Workspace workspace, string jekyllPath)
 {
     _workspace = workspace;
     _jekyllPath = jekyllPath;
 }
 public JekyllExporter(Workspace workspace, string destination)
 {
     _configuration = new JekyllExporterConfiguration(workspace, destination);
 }