Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions installer/build/scripts/Build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,15 @@ module Builder =
unzipFile (zipFile, buildDir)
tracefn "Unzipped zip file in %s" zipFile

// sign every DLL to be part of the MSI
let unzippedDir = Regex.Replace(zipFile, "(^.*)\.zip$", "$1/")
let dllFiles = unzippedDir
|> directoryInfo
|> filesInDirMatching ("*.dll")
|> Seq.map (fun f -> f.FullName)
for dllFile in dllFiles do
Sign dllFile

let exitCode = ExecProcess (fun info ->
info.FileName <- sprintf "%sInstaller" MsiBuildDir
info.WorkingDirectory <- MsiDir
Expand Down