Skip to content

Commit

Permalink
Add a 'pack' command (For now just as a test)
Browse files Browse the repository at this point in the history
Related to #12
  • Loading branch information
vbfox committed Mar 2, 2016
1 parent 6550513 commit c2fcc17
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions build/build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,16 @@ Target "GitHubRelease" (fun _ ->
|> Async.RunSynchronously
)

Target "Pack" <| fun _ ->
Fake.ILMergeHelper.ILMerge
(fun p ->
{ p with
Libraries = !! (appBinDir </> "*.dll")
ToolPath = rootDir </> "ilrepack.exe"
})
(artifactsDir </> "merged.exe")
(appBinDir </> "stidgen.exe")

// --------------------------------------------------------------------------------------
// Empty targets for readability

Expand Down

0 comments on commit c2fcc17

Please sign in to comment.