Skip to content

Commit 64cc7ff

Browse files
committed
Fix tests (#67 and #70)
1 parent f55c8f4 commit 64cc7ff

8 files changed

+14
-42
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 1.0.6.13 (08 April 2017)
1+
# 1.0.6.13 (08 april 2017)
22

33
- [#68](https://github.com/StefH/System.Linq.Dynamic.Core/pull/68) - Work on #66 -> Should work now. Tests will follow on VS2017 support! contributed by Jochen Kühner ([jogibear9988](https://github.com/jogibear9988))
44

ChangeLog.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
https://github.com/GitTools/GitReleaseNotes
22

3-
GitReleaseNotes.exe . /OutputFile CHANGELOG.md /alltags
3+
GitReleaseNotes.exe . /OutputFile CHANGELOG.md /Version 1.0.7.0
File renamed without changes.

System.Linq.Dynamic.Core.vs2017.sln

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 15
4-
VisualStudioVersion = 15.0.26228.9
4+
VisualStudioVersion = 15.0.26403.0
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{8463ED7E-69FB-49AE-85CF-0791AFD98E38}"
77
EndProject
@@ -11,6 +11,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1111
ProjectSection(SolutionItems) = preProject
1212
.deployment = .deployment
1313
appveyor.yml = appveyor.yml
14+
CHANGELOG.md = CHANGELOG.md
15+
ChangeLog.txt = ChangeLog.txt
16+
codecov.yml = codecov.yml
1417
LICENSE = LICENSE
1518
README.md = README.md
1619
EndProjectSection

test/EntityFramework.DynamicLinq.Tests.net452/EntityFramework.DynamicLinq.Tests.net452.csproj

+6
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@
5151
<Reference Include="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
5252
<HintPath>..\..\packages\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
5353
</Reference>
54+
<Reference Include="NFluent, Version=1.4.0.1, Culture=neutral, PublicKeyToken=18828b37b84b1437, processorArchitecture=MSIL">
55+
<HintPath>..\..\packages\NFluent.2.0.0-alpha\lib\net40\NFluent.dll</HintPath>
56+
</Reference>
5457
<Reference Include="QueryInterceptor.Core, Version=1.0.5.0, Culture=neutral, processorArchitecture=MSIL">
5558
<HintPath>..\..\packages\QueryInterceptor.Core.1.0.5.0\lib\net452\QueryInterceptor.Core.dll</HintPath>
5659
</Reference>
@@ -182,6 +185,9 @@
182185
<Compile Include="..\System.Linq.Dynamic.Core.Tests\Helpers\Entities\Post.cs">
183186
<Link>Helpers\Entities\Post.cs</Link>
184187
</Compile>
188+
<Compile Include="..\System.Linq.Dynamic.Core.Tests\Helpers\Models\Methods.cs">
189+
<Link>Helpers\Models\Methods.cs</Link>
190+
</Compile>
185191
<Compile Include="..\System.Linq.Dynamic.Core.Tests\Helpers\Models\ModelWithEnum.cs">
186192
<Link>Helpers\Models\ModelWithEnum.cs</Link>
187193
</Compile>

test/EntityFramework.DynamicLinq.Tests.net452/packages.config

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<package id="Microsoft.AspNet.Identity.Core" version="2.2.1" targetFramework="net452" />
66
<package id="Microsoft.AspNet.Identity.EntityFramework" version="2.2.1" targetFramework="net452" />
77
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="net452" />
8+
<package id="NFluent" version="2.0.0-alpha" targetFramework="net452" />
89
<package id="QueryInterceptor.Core" version="1.0.5.0" targetFramework="net452" />
910
<package id="xunit" version="2.2.0-beta4-build3444" targetFramework="net452" />
1011
<package id="xunit.abstractions" version="2.0.1" targetFramework="net452" />

test/System.Linq.Dynamic.Core.Tests/System.Linq.Dynamic.Core.Tests.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
<PackageReference Include="xunit">
3333
<Version>2.2.0</Version>
3434
</PackageReference>
35+
<PackageReference Include="NFluent" Version="2.0.0-alpha" />
3536
</ItemGroup>
3637

3738
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp1.1' ">

test/System.Linq.Dynamic.Core.Tests/TextFile.txt

-39
This file was deleted.

0 commit comments

Comments
 (0)