From 7bb4dc538936678835febec8fa80cffb4d18d0ae Mon Sep 17 00:00:00 2001 From: Geert van Horrik Date: Wed, 16 Jul 2014 08:51:13 +0200 Subject: [PATCH 1/4] Updated projects using GitHubLink --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index df815fa..ee71ace 100644 --- a/README.md +++ b/README.md @@ -116,10 +116,12 @@ GitHubLink creates a source index file and updates the PDB file so it will retri # Projects using GitHubLink # -Below is a list of projects already using GitHubLink. +Below is a list of projects already using GitHubLink (alphabetically ordered). - Catel +- eXpand - GitHubLink +- Orchestra Are you using GitHubLink in your projects? Let us know and we will add your project to the list. From d863f73b4689e4c39f5e0a85e1b8bd6f1b3a9921 Mon Sep 17 00:00:00 2001 From: Geert van Horrik Date: Mon, 11 Aug 2014 12:27:53 +0200 Subject: [PATCH 2/4] Updated HelpWriter --- src/GitHubLink/HelpWriter.cs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/GitHubLink/HelpWriter.cs b/src/GitHubLink/HelpWriter.cs index 2114ddb..7dfe6f6 100644 --- a/src/GitHubLink/HelpWriter.cs +++ b/src/GitHubLink/HelpWriter.cs @@ -30,10 +30,11 @@ Note that the solution must be built because this application will update existi GitHubLink [solutionPath] -url [urlToRepository] - solutionPath The directory containing the solution with the pdb files. - -url [url] Url to remote git repository. - -b [branch] Name of the branch to use on the remote repository. - -l [file] + solutionPath The directory containing the solution with the pdb files. + -url [url] Url to remote git repository. + -c [config] Name of the configuration, default value is 'Release'. + -b [branch] Name of the branch to use on the remote repository. + -l [file] The log file to write to. "; writer(message); } From 2436791f97ad491f07c068811c6835c93985c82c Mon Sep 17 00:00:00 2001 From: Geert van Horrik Date: Mon, 11 Aug 2014 15:17:40 +0200 Subject: [PATCH 3/4] Added scripts for solution maintenance --- lib/RestorePackages.bat | 4 ---- scripts - Clean all.bat | 7 +++++++ scripts - Restore packages.bat | 4 ++++ 3 files changed, 11 insertions(+), 4 deletions(-) delete mode 100644 lib/RestorePackages.bat create mode 100644 scripts - Clean all.bat create mode 100644 scripts - Restore packages.bat diff --git a/lib/RestorePackages.bat b/lib/RestorePackages.bat deleted file mode 100644 index 10cbafb..0000000 --- a/lib/RestorePackages.bat +++ /dev/null @@ -1,4 +0,0 @@ -for /f %%a IN ('dir /b ..\src\*.sln') do call ..\tools\nuget\nuget.exe restore ..\src\%%a -PackagesDirectory .\ - - -pause \ No newline at end of file diff --git a/scripts - Clean all.bat b/scripts - Clean all.bat new file mode 100644 index 0000000..effd5ea --- /dev/null +++ b/scripts - Clean all.bat @@ -0,0 +1,7 @@ +REM Deleting packages +for /d %%p in (".\lib\*.*") do rmdir "%%p" /s /q + +REM Deleting output +rmdir .\output /s /q + +pause \ No newline at end of file diff --git a/scripts - Restore packages.bat b/scripts - Restore packages.bat new file mode 100644 index 0000000..529df1f --- /dev/null +++ b/scripts - Restore packages.bat @@ -0,0 +1,4 @@ +for /f %%a in ('dir /b src\*.sln') do call tools\nuget\nuget.exe restore src\%%a -PackagesDirectory .\lib + + +pause \ No newline at end of file From b5a502731c198e5d7a5e888e95ee375c0fdb5b2b Mon Sep 17 00:00:00 2001 From: Geert van Horrik Date: Wed, 27 Aug 2014 11:18:10 +0200 Subject: [PATCH 4/4] Added FSharp.Core as included assembly via costura --- src/GitHubLink/FodyWeavers.xml | 9 ++++++++- src/GitHubLink/GitHubLink.csproj | 4 +++- src/GitHubLink/Program.cs | 4 ++++ 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/src/GitHubLink/FodyWeavers.xml b/src/GitHubLink/FodyWeavers.xml index c6e1b7c..f4da8b5 100644 --- a/src/GitHubLink/FodyWeavers.xml +++ b/src/GitHubLink/FodyWeavers.xml @@ -1,4 +1,11 @@  - + + + Catel.Core + FSharp.Core + LibGit2Sharp + SourceLink + + \ No newline at end of file diff --git a/src/GitHubLink/GitHubLink.csproj b/src/GitHubLink/GitHubLink.csproj index a91773e..f25b82d 100644 --- a/src/GitHubLink/GitHubLink.csproj +++ b/src/GitHubLink/GitHubLink.csproj @@ -50,7 +50,9 @@ False ..\..\lib\Catel.Core.3.9.0.1404200146-beta\lib\net45\Catel.Core.dll - + + True + ..\..\lib\LibGit2Sharp.0.17.0.0\lib\net35\LibGit2Sharp.dll True diff --git a/src/GitHubLink/Program.cs b/src/GitHubLink/Program.cs index 6d86526..14977dd 100644 --- a/src/GitHubLink/Program.cs +++ b/src/GitHubLink/Program.cs @@ -53,6 +53,10 @@ private static int Main(string[] args) { Log.Error(ex, "An unexpected error occurred"); +#if DEBUG + WaitForKeyPress(); +#endif + return -1; } }