Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Render multiple assemblies in one step #49

Closed
forki opened this issue Oct 24, 2013 · 6 comments
Closed

Render multiple assemblies in one step #49

forki opened this issue Oct 24, 2013 · 6 comments

Comments

@forki
Copy link
Member

forki commented Oct 24, 2013

Hi,

at the moment I do this:

MetadataFormat.Generate ( 
    "./build/FakeLib.dll", 
    apidocsDir, 
    ["./help/templates/reference/"])

But I'd like to do this:

MetadataFormat.Generate ( 
    ["./build/FakeLib.dll"; "./build/Fake.SQL.dll"], 
    apidocsDir, 
    ["./help/templates/reference/"])

Any chance you can do this?

@tpetricek
Copy link
Member

I see - the difference would be that you'd get just one index.html with all the namespaces?

@forki
Copy link
Member Author

forki commented Oct 28, 2013

yep probably.

@ovatsus
Copy link

ovatsus commented Oct 29, 2013

One index.html with all the namespaces would be nice (and each namespace with a merge of all the elements from all the assemblies that have that namespace)

@tpetricek
Copy link
Member

Generate now has an overload taking a list of assemblies.

@forki
Copy link
Member Author

forki commented Nov 27, 2013

Cool

@forki
Copy link
Member Author

forki commented Nov 28, 2013

Can you make it a seq of assemblies?

    MetadataFormat.Generate ( 
      !! "./build/FAKE*.dll" |> Seq.toList, 
      apidocsDir, 
      ["./help/templates/"; "./help/templates/reference/"], 
      parameters = projInfo)

vs.

    MetadataFormat.Generate ( 
      !! "./build/FAKE*.dll", 
      apidocsDir, 
      ["./help/templates/"; "./help/templates/reference/"], 
      parameters = projInfo)

@tpetricek tpetricek reopened this Nov 28, 2013
sergey-tihon added a commit to sergey-tihon/FSharp.ProjectScaffold that referenced this issue Jul 8, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants