Add binding generation as an additional onetime build step.
This commit is contained in:
parent
7fd3d75f6c
commit
73b9d56456
1 changed files with 3 additions and 3 deletions
|
@ -106,9 +106,9 @@ let generateBindings =
|
|||
|> ignore
|
||||
let bindingProcess = new Process()
|
||||
bindingProcess.StartInfo.FileName <- "src/Generator.Bind/bin/Release/Bind.exe"
|
||||
bindingProcess.Start()
|
||||
bindingProcess.WaitForExit()
|
||||
File.Create(".bindingsGenerated").Close();
|
||||
bindingProcess.Start() |> ignore
|
||||
bindingProcess.WaitForExit() |> ignore
|
||||
File.Create(".bindingsGenerated").Close() |> ignore
|
||||
|
||||
|
||||
// Generate assembly info files with the right version & up-to-date information
|
||||
|
|
Loading…
Reference in a new issue