Skip to content

Commit

Permalink
Merge pull request #39 from forki/build
Browse files Browse the repository at this point in the history
Use globbing for IKVMCompile
  • Loading branch information
KevM committed Apr 11, 2016
2 parents e742f12 + 6eb318b commit 5f98bb5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ Target "RunTests" (fun _ ->
type tikaDir = root.``paket-files``.``www-us.apache.org``

Target "CompileTikaLib" (fun _ ->
[IKVMcTask(tikaDir.``tika-app-1.12.jar``, "tika-app.dll", Version=release.AssemblyVersion)]
!! "paket-files/www-us.apache.org/tika-app-*.jar"
|> Seq.map (fun name -> IKVMcTask(name, "tika-app.dll", Version=release.AssemblyVersion))
|> IKVMCompile tikaLibDir
)

Expand Down

0 comments on commit 5f98bb5

Please sign in to comment.