Skip to content

Commit adcf27b

Browse files
committed
Merge pull request #191 from JakeGinnivan/NuGetUpdates
Nu get updates
2 parents ae9e9ed + 78019b5 commit adcf27b

17 files changed

+38
-184
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,4 @@ Build/*
1717
TestResult.xml
1818
TestStack.BDDfy.sln.ide/graph
1919
_NCrunch_TestStack.BDDfy/
20+
TestStack.BDDfy.sln.ide/

.nuget/NuGet.Config

Lines changed: 0 additions & 6 deletions
This file was deleted.

.nuget/NuGet.exe

58.5 KB
Binary file not shown.

.nuget/NuGet.targets

Lines changed: 0 additions & 136 deletions
This file was deleted.

.nuget/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="NUnit.Runners" version="2.6.2" />
3+
<package id="NUnit.Runners" version="2.6.4" />
44
</packages>

Resource/Build/GitVersion.exe

2.06 MB
Binary file not shown.

Resource/Build/GitVersion.pdb

55.5 KB
Binary file not shown.

Samples/TestStack.BDDfy.Samples/TestStack.BDDfy.Samples.csproj

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
<AssemblyName>TestStack.BDDfy.Samples</AssemblyName>
1313
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
1414
<FileAlignment>512</FileAlignment>
15-
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
16-
<RestorePackages>true</RestorePackages>
1715
</PropertyGroup>
1816
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1917
<DebugSymbols>true</DebugSymbols>
@@ -70,8 +68,9 @@
7068
<Compile Include="UseExamplesWithFluentApi.cs" />
7169
</ItemGroup>
7270
<ItemGroup>
73-
<Reference Include="nunit.framework">
74-
<HintPath>..\..\packages\NUnit.2.6.2\lib\nunit.framework.dll</HintPath>
71+
<Reference Include="nunit.framework, Version=2.6.4.14350, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
72+
<SpecificVersion>False</SpecificVersion>
73+
<HintPath>..\..\packages\NUnit.2.6.4\lib\nunit.framework.dll</HintPath>
7574
</Reference>
7675
<Reference Include="System" />
7776
</ItemGroup>
@@ -82,16 +81,13 @@
8281
</ProjectReference>
8382
</ItemGroup>
8483
<ItemGroup>
85-
<None Include="packages.config">
86-
<SubType>Designer</SubType>
87-
</None>
84+
<None Include="packages.config" />
8885
</ItemGroup>
8986
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
9087
<PropertyGroup>
9188
<PostBuildEvent>
9289
</PostBuildEvent>
9390
</PropertyGroup>
94-
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
9591
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
9692
Other similar extension points exist, see Microsoft.Common.targets.
9793
<Target Name="BeforeBuild">
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="NUnit" version="2.6.2" targetFramework="net40" />
3+
<package id="NUnit" version="2.6.4" targetFramework="net45" />
4+
<package id="NUnit.Runners" version="2.6.4" targetFramework="net45" />
45
</packages>

TestStack.BDDfy.Tests/Reporters/ReportApprover.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
using System;
22
using System.Text.RegularExpressions;
33
using ApprovalTests;
4+
using ApprovalTests.Utilities;
45
using TestStack.BDDfy.Reporters;
56
using TestStack.BDDfy.Tests.Reporters.Html;
67

0 commit comments

Comments
 (0)