Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJamie Humphries <jamie.humphries@softwire.com>2015-01-03 14:13:51 +0300
committernulltoken <emeric.fermas@gmail.com>2015-01-05 19:53:52 +0300
commit977817ea6fcf3d4f05d9ebd0b44948cc7d4441c9 (patch)
treee29b151657967b2437d55716cf3262343bf3a851 /LibGit2Sharp.Tests
parent6b7216e5cfe07629b0e427820dca679d567ada49 (diff)
Leverage NuGet restore for development dependencies
Fix #872
Diffstat (limited to 'LibGit2Sharp.Tests')
-rw-r--r--LibGit2Sharp.Tests/LibGit2Sharp.Tests.csproj15
-rw-r--r--LibGit2Sharp.Tests/app.config11
-rw-r--r--LibGit2Sharp.Tests/packages.config6
3 files changed, 27 insertions, 5 deletions
diff --git a/LibGit2Sharp.Tests/LibGit2Sharp.Tests.csproj b/LibGit2Sharp.Tests/LibGit2Sharp.Tests.csproj
index fee56bee..26484b87 100644
--- a/LibGit2Sharp.Tests/LibGit2Sharp.Tests.csproj
+++ b/LibGit2Sharp.Tests/LibGit2Sharp.Tests.csproj
@@ -32,18 +32,19 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
- <Reference Include="Moq, Version=4.0.10827.0, Culture=neutral, PublicKeyToken=69f491c39445e920, processorArchitecture=MSIL">
+ <Reference Include="Moq, Version=4.2.1409.1722, Culture=neutral, PublicKeyToken=69f491c39445e920, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
- <HintPath>..\Lib\MoQ\Moq.dll</HintPath>
+ <HintPath>..\packages\Moq.4.2.1409.1722\lib\net40\Moq.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml" />
- <Reference Include="xunit">
- <HintPath>..\Lib\xUnit\xunit.dll</HintPath>
+ <Reference Include="xunit, Version=1.9.2.1705, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL">
+ <SpecificVersion>False</SpecificVersion>
+ <HintPath>..\packages\xunit.1.9.2\lib\net20\xunit.dll</HintPath>
</Reference>
<Reference Include="xunit.extensions">
- <HintPath>..\Lib\xUnit\xunit.extensions.dll</HintPath>
+ <HintPath>..\packages\xunit.extensions.1.9.2\lib\net20\xunit.extensions.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
@@ -123,6 +124,10 @@
<Name>LibGit2Sharp</Name>
</ProjectReference>
</ItemGroup>
+ <ItemGroup>
+ <None Include="app.config" />
+ <None Include="packages.config" />
+ </ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<NativeBinariesDirectory>$(MSBuildProjectDirectory)\..\Lib\NativeBinaries</NativeBinariesDirectory>
diff --git a/LibGit2Sharp.Tests/app.config b/LibGit2Sharp.Tests/app.config
new file mode 100644
index 00000000..5ab38dff
--- /dev/null
+++ b/LibGit2Sharp.Tests/app.config
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="utf-8"?>
+<configuration>
+ <runtime>
+ <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
+ <dependentAssembly>
+ <assemblyIdentity name="xunit" publicKeyToken="8d05b1bb7a6fdb6c" culture="neutral" />
+ <bindingRedirect oldVersion="0.0.0.0-1.9.2.1705" newVersion="1.9.2.1705" />
+ </dependentAssembly>
+ </assemblyBinding>
+ </runtime>
+</configuration>
diff --git a/LibGit2Sharp.Tests/packages.config b/LibGit2Sharp.Tests/packages.config
new file mode 100644
index 00000000..e681c051
--- /dev/null
+++ b/LibGit2Sharp.Tests/packages.config
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8"?>
+<packages>
+ <package id="Moq" version="4.2.1409.1722" targetFramework="net40" />
+ <package id="xunit" version="1.9.2" targetFramework="net40" />
+ <package id="xunit.extensions" version="1.9.2" targetFramework="net40" />
+</packages>