コード例 #1
0
 public void Output_dream_without_isolation() {
     _log.Debug("generating dream docs");
     var builder = new HtmlDocumentationBuilder(new TypeInspector());
     builder.AddAssembly(@"mindtouch.dream.dll");
     builder.AddAssembly(@"mindtouch.dream.test.dll");
     builder.AddAssembly(@"mindtouch.core.dll");
     builder.BuildDocumenationPackage(@"c:\tmp\mindtouch");
     _log.Debug("generating dream docs");
 }
コード例 #2
0
 public void Output_Sample() {
     var assemblyPath = @"MindTouch.Deki.Util.Tests.dll";
     var builder = new HtmlDocumentationBuilder(new TypeInspector());
     builder.AddAssembly(assemblyPath);
     builder.BuildDocumenationPackage(@"c:\tmp\sample", "MindTouch.Deki.Util.Tests.Documentation.Sample");
 }
コード例 #3
0
ファイル: Program.cs プロジェクト: heran/DekiWiki
 private static void Generate(Opts opts) {
     if(opts.Test) {
         return;
     }
     Console.WriteLine("Generating Documentation...");
     var builder = new HtmlDocumentationBuilder();
     opts.Assemblies.ForEach(builder.AddAssembly);
     builder.BuildDocumenationPackage(opts.OutputPath);
 }