Skip to content
This repository has been archived by the owner on Feb 12, 2023. It is now read-only.

Commit

Permalink
Merge branch 'release/1.5.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
GeertvanHorrik committed Aug 27, 2014
2 parents 28d97a2 + b5a5027 commit abfb231
Show file tree
Hide file tree
Showing 8 changed files with 34 additions and 11 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,12 @@ GitHubLink creates a source index file and updates the PDB file so it will retri
<a name="ProjectsUsingGitHubLink"></a>
# Projects using GitHubLink #

Below is a list of projects already using GitHubLink.
Below is a list of projects already using GitHubLink (alphabetically ordered).

- <a href="http://www.catelproject.com" target="_blank">Catel</a>
- <a href="http://www.expandframework.com/" target="_blank">eXpand</a>
- <a href="https://github.com/GeertvanHorrik/GitHubLink" target="_blank">GitHubLink</a>
- <a href="https://github.com/orcomp/orchestra" target="_blank">Orchestra</a>

Are you using GitHubLink in your projects? Let us know and we will add your project to the list.

Expand Down
4 changes: 0 additions & 4 deletions lib/RestorePackages.bat

This file was deleted.

7 changes: 7 additions & 0 deletions scripts - Clean all.bat
Original file line number Diff line number Diff line change
@@ -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
4 changes: 4 additions & 0 deletions scripts - Restore packages.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
for /f %%a in ('dir /b src\*.sln') do call tools\nuget\nuget.exe restore src\%%a -PackagesDirectory .\lib


pause
9 changes: 8 additions & 1 deletion src/GitHubLink/FodyWeavers.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<Weavers>
<Costura />
<Costura>
<IncludeAssemblies>
Catel.Core
FSharp.Core
LibGit2Sharp
SourceLink
</IncludeAssemblies>
</Costura>
</Weavers>
4 changes: 3 additions & 1 deletion src/GitHubLink/GitHubLink.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\lib\Catel.Core.3.9.0.1404200146-beta\lib\net45\Catel.Core.dll</HintPath>
</Reference>
<Reference Include="FSharp.Core, Version=4.3.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
<Reference Include="FSharp.Core, Version=4.3.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<Private>True</Private>
</Reference>
<Reference Include="LibGit2Sharp">
<HintPath>..\..\lib\LibGit2Sharp.0.17.0.0\lib\net35\LibGit2Sharp.dll</HintPath>
<Private>True</Private>
Expand Down
9 changes: 5 additions & 4 deletions src/GitHubLink/HelpWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down
4 changes: 4 additions & 0 deletions src/GitHubLink/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ private static int Main(string[] args)
{
Log.Error(ex, "An unexpected error occurred");

#if DEBUG
WaitForKeyPress();
#endif

return -1;
}
}
Expand Down

0 comments on commit abfb231

Please sign in to comment.