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. 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 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/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); } 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; } }