Skip to content

Commit

Permalink
Add .config files to zip
Browse files Browse the repository at this point in the history
Otherwise the tool doesn't work...
  • Loading branch information
vbfox committed Sep 8, 2015
1 parent 53dfb40 commit b9af884
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ Target "Zip" (fun _ ->
let files =
!! (appBinDir </> "*.dll")
++ (appBinDir </> "*.pdb")
++ (appBinDir </> "*.config")
++ (appBinDir </> "*.exe")
ZipHelper.CreateZip appBinDir zipPath comment 7 false files
)
Expand Down Expand Up @@ -189,11 +190,11 @@ Target "GitHubRelease" (fun _ ->
let user =
match getBuildParam "github-user" with
| s when not (String.IsNullOrWhiteSpace s) -> s
| _ -> getUserInput "Username: "
| _ -> getUserInput "GitHub Username: "
let pw =
match getBuildParam "github-pw" with
| s when not (String.IsNullOrWhiteSpace s) -> s
| _ -> getUserPassword "Password: "
| _ -> getUserPassword "GitHub Password or Token: "

// release on github
Octokit.createClient user pw
Expand Down

0 comments on commit b9af884

Please sign in to comment.