Skip to content

Commit 8f3f370

Browse files
author
Joerg Battermann
committed
Bumped nuget dependencies
1 parent 506274d commit 8f3f370

5 files changed

Lines changed: 23 additions & 10 deletions

File tree

src/GeoJSON.Net.Tests/GeoJSON.Net.Tests.csproj

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,17 +31,18 @@
3131
<WarningLevel>4</WarningLevel>
3232
</PropertyGroup>
3333
<ItemGroup>
34-
<Reference Include="Newtonsoft.Json">
35-
<HintPath>..\packages\Newtonsoft.Json.4.0.5\lib\net40\Newtonsoft.Json.dll</HintPath>
34+
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
35+
<SpecificVersion>False</SpecificVersion>
36+
<HintPath>..\packages\Newtonsoft.Json.6.0.2\lib\net40\Newtonsoft.Json.dll</HintPath>
3637
</Reference>
3738
<Reference Include="System" />
3839
<Reference Include="System.Core" />
3940
<Reference Include="Microsoft.CSharp" />
4041
<Reference Include="xunit">
41-
<HintPath>..\packages\xunit.1.9.0.1566\lib\xunit.dll</HintPath>
42+
<HintPath>..\packages\xunit.1.9.2\lib\net20\xunit.dll</HintPath>
4243
</Reference>
4344
<Reference Include="xunit.extensions">
44-
<HintPath>..\packages\xunit.extensions.1.9.0.1566\lib\xunit.extensions.dll</HintPath>
45+
<HintPath>..\packages\xunit.extensions.1.9.2\lib\net20\xunit.extensions.dll</HintPath>
4546
</Reference>
4647
</ItemGroup>
4748
<ItemGroup>
@@ -54,6 +55,7 @@
5455
</ProjectReference>
5556
</ItemGroup>
5657
<ItemGroup>
58+
<None Include="app.config" />
5759
<None Include="packages.config" />
5860
</ItemGroup>
5961
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />

src/GeoJSON.Net.Tests/app.config

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<runtime>
4+
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
5+
<dependentAssembly>
6+
<assemblyIdentity name="xunit" publicKeyToken="8d05b1bb7a6fdb6c" culture="neutral" />
7+
<bindingRedirect oldVersion="0.0.0.0-1.9.2.1705" newVersion="1.9.2.1705" />
8+
</dependentAssembly>
9+
</assemblyBinding>
10+
</runtime>
11+
</configuration>
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Newtonsoft.Json" version="4.0.5" />
4-
<package id="xunit" version="1.9.0.1566" />
5-
<package id="xunit.extensions" version="1.9.0.1566" />
3+
<package id="Newtonsoft.Json" version="6.0.2" targetFramework="net40" />
4+
<package id="xunit" version="1.9.2" targetFramework="net40" />
5+
<package id="xunit.extensions" version="1.9.2" targetFramework="net40" />
66
</packages>

src/GeoJSON.Net/GeoJSON.Net.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@
3333
<DocumentationFile>bin\Release\GeoJSON.Net.XML</DocumentationFile>
3434
</PropertyGroup>
3535
<ItemGroup>
36-
<Reference Include="Newtonsoft.Json, Version=4.0.5.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
36+
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
3737
<SpecificVersion>False</SpecificVersion>
38-
<HintPath>..\packages\Newtonsoft.Json.4.0.5\lib\net40\Newtonsoft.Json.dll</HintPath>
38+
<HintPath>..\packages\Newtonsoft.Json.6.0.2\lib\net40\Newtonsoft.Json.dll</HintPath>
3939
</Reference>
4040
<Reference Include="System" />
4141
<Reference Include="System.Core" />

src/GeoJSON.Net/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="Newtonsoft.Json" version="4.0.5" />
3+
<package id="Newtonsoft.Json" version="6.0.2" targetFramework="net40" />
44
</packages>

0 commit comments

Comments
 (0)