提交 abfb231e 编写于 作者: G Geert van Horrik

Merge branch 'release/1.5.0'

......@@ -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.
......
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
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
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
<?xml version="1.0" encoding="utf-8"?>
<Weavers>
<Costura />
<Costura>
<IncludeAssemblies>
Catel.Core
FSharp.Core
LibGit2Sharp
SourceLink
</IncludeAssemblies>
</Costura>
</Weavers>
\ No newline at end of file
......@@ -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>
......
......@@ -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);
}
......
......@@ -53,6 +53,10 @@ namespace GitHubLink
{
Log.Error(ex, "An unexpected error occurred");
#if DEBUG
WaitForKeyPress();
#endif
return -1;
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册