Skip to content
This repository has been archived by the owner on Aug 8, 2020. It is now read-only.

Commit

Permalink
Updated dependencies to latest bits
Browse files Browse the repository at this point in the history
  • Loading branch information
phatboyg committed Sep 2, 2014
1 parent 82c80c2 commit 4d11b85
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Magnum.TestFramework.nuspec
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Magnum.TestFramework</id>
<version>2.1.2</version>
<version>2.1.3</version>
<authors>Chris Patterson, Dru Sellers</authors>
<description>Magnum is a library for the larger than average developer</description>
<language>en-US</language>
Expand Down
4 changes: 2 additions & 2 deletions Magnum.nuspec
Expand Up @@ -2,14 +2,14 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Magnum</id>
<version>2.1.2</version>
<version>2.1.3</version>
<authors>Chris Patterson, Dru Sellers</authors>
<description>Magnum is a library for the larger than average developer</description>
<language>en-US</language>
<licenseUrl>https://github.com/phatboyg/Magnum/blob/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/phatboyg/Magnum</projectUrl>
<dependencies>
<dependency id="Newtonsoft.Json" version="5.0.8" />
<dependency id="Newtonsoft.Json" version="6.0.4" />
</dependencies>
</metadata>
<files>
Expand Down
2 changes: 1 addition & 1 deletion rakefile.rb
Expand Up @@ -7,7 +7,7 @@
require File.dirname(__FILE__) + "/build_support/ilmergeconfig.rb"
require File.dirname(__FILE__) + "/build_support/ilmerge.rb"

BUILD_NUMBER_BASE = '2.1.2'
BUILD_NUMBER_BASE = '2.1.3'
PRODUCT = 'Magnum'
CLR_TOOLS_VERSION = 'v4.0.30319'

Expand Down
4 changes: 2 additions & 2 deletions src/Magnum.Specs/Magnum.Specs.csproj
Expand Up @@ -79,10 +79,10 @@
<HintPath>..\packages\log4net.2.0.2\lib\Net40-full\log4net.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json" Condition="'$(TargetFrameworkVersion)' == 'v3.5'">
<HintPath>..\packages\Newtonsoft.Json.5.0.8\lib\Net35\Newtonsoft.Json.dll</HintPath>
<HintPath>..\packages\Newtonsoft.Json.6.0.4\lib\Net35\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json" Condition="'$(TargetFrameworkVersion)' == 'v4.0'">
<HintPath>..\packages\Newtonsoft.Json.5.0.8\lib\Net40\Newtonsoft.Json.dll</HintPath>
<HintPath>..\packages\Newtonsoft.Json.6.0.4\lib\Net40\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="nunit.framework, Version=2.6.3.13283, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
Expand Down
6 changes: 3 additions & 3 deletions src/Magnum.Specs/packages.config
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="log4net" version="2.0.2" targetFramework="net40" />
<package id="Newtonsoft.Json" version="5.0.8" targetFramework="net40" />
<package id="log4net" version="2.0.3" targetFramework="net40" />
<package id="Newtonsoft.Json" version="6.0.4" targetFramework="net40" />
<package id="NUnit" version="2.6.3" targetFramework="net40" />
<package id="RhinoMocks" version="3.6.1" targetFramework="net40" />
<package id="NUnit.Runners" version="2.6.3" />
<package id="RhinoMocks" version="3.6.1" targetFramework="net40" />
</packages>
4 changes: 2 additions & 2 deletions src/Magnum/Magnum.csproj
Expand Up @@ -80,10 +80,10 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="Newtonsoft.Json" Condition="'$(TargetFrameworkVersion)' == 'v3.5'">
<HintPath>..\packages\Newtonsoft.Json.5.0.8\lib\net35\Newtonsoft.Json.dll</HintPath>
<HintPath>..\packages\Newtonsoft.Json.6.0.4\lib\net35\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json" Condition="'$(TargetFrameworkVersion)' == 'v4.0'">
<HintPath>..\packages\Newtonsoft.Json.5.0.8\lib\net40\Newtonsoft.Json.dll</HintPath>
<HintPath>..\packages\Newtonsoft.Json.6.0.4\lib\net40\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core">
Expand Down
2 changes: 1 addition & 1 deletion src/Magnum/packages.config
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Newtonsoft.Json" version="5.0.8" targetFramework="net40" />
<package id="Newtonsoft.Json" version="6.0.4" targetFramework="net40" />
</packages>

0 comments on commit 4d11b85

Please sign in to comment.