From b9af884b3235beffcab3e1a333646fb79eb666ff Mon Sep 17 00:00:00 2001 From: Julien Roncaglia Date: Tue, 8 Sep 2015 19:32:31 +0200 Subject: [PATCH] Add .config files to zip Otherwise the tool doesn't work... --- build.fsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build.fsx b/build.fsx index 097257c..3ae85c1 100644 --- a/build.fsx +++ b/build.fsx @@ -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 ) @@ -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