Skip to content

Commit

Permalink
Merge pull request #363 from OctopusDeploy/bug-5175
Browse files Browse the repository at this point in the history
Embedded octodiff into the windows exe
  • Loading branch information
mcasperson authored Dec 18, 2018
2 parents 504c3ff + 42f8b38 commit e42283c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,9 @@ Task("MergeOctoExe")
ILRepack(
$"{outputFolder}/Octo.exe",
$"{inputFolder}/Octo.exe",
System.IO.Directory.EnumerateFiles(inputFolder, "*.dll").Select(f => (FilePath) f),
System.IO.Directory.EnumerateFiles(inputFolder, "*.dll")
.Union(System.IO.Directory.EnumerateFiles(inputFolder, "octodiff.exe"))
.Select(f => (FilePath) f),
new ILRepackSettings {
Internalize = true,
Parallel = true,
Expand Down

0 comments on commit e42283c

Please sign in to comment.