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

github.com/mono/Newtonsoft.Json.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Newton-King <james@newtonking.com>2012-03-19 10:00:51 +0400
committerJames Newton-King <james@newtonking.com>2012-03-19 10:00:51 +0400
commit2b353d389c0b17f432faab9b5ba35e44b8ad4d94 (patch)
treed2a86da37108326dd8357991b20c2914ceab9f07
parent60004065fd1d00ad925bd8ea2ce45c6fe2c74e83 (diff)
-Updated version to 4.5.1
-Changed build script to include Metro build -Changed build script to set assembly version to major version only -Documentation
-rw-r--r--Build/Newtonsoft.Json.nuspec2
-rw-r--r--Build/build.ps112
-rw-r--r--Doc/versions.txt5
-rw-r--r--Src/Newtonsoft.Json.Tests/Newtonsoft.Json.Tests.Metro.csproj626
-rw-r--r--Src/Newtonsoft.Json.Tests/Properties/AssemblyInfo.cs4
-rw-r--r--Src/Newtonsoft.Json/Newtonsoft.Json.Metro.csproj5
-rw-r--r--Src/Newtonsoft.Json/Properties/AssemblyInfo.cs4
7 files changed, 332 insertions, 326 deletions
diff --git a/Build/Newtonsoft.Json.nuspec b/Build/Newtonsoft.Json.nuspec
index 53e2f34..5b1a08c 100644
--- a/Build/Newtonsoft.Json.nuspec
+++ b/Build/Newtonsoft.Json.nuspec
@@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Newtonsoft.Json</id>
- <version>4.0.8</version>
+ <version>4.5.1</version>
<title>Json.NET</title>
<description>Json.NET is a popular high-performance JSON framework for .NET</description>
<authors>James Newton-King</authors>
diff --git a/Build/build.ps1 b/Build/build.ps1
index bb39c00..a5ef4e8 100644
--- a/Build/build.ps1
+++ b/Build/build.ps1
@@ -1,7 +1,8 @@
properties {
- $zipFileName = "Json40r8.zip"
- $majorVersion = "4.0.8"
- $version = GetVersion $majorVersion
+ $zipFileName = "Json45r1.zip"
+ $majorVersion = "4.5"
+ $majorWithReleaseVersion = "4.5.1"
+ $version = GetVersion $majorWithReleaseVersion
$signAssemblies = $false
$signKeyPath = "D:\Development\Releases\newtonsoft.snk"
$buildDocumentation = $false
@@ -16,6 +17,7 @@
$workingDir = "$baseDir\Working"
$builds = @(
@{Name = "Newtonsoft.Json"; TestsName = "Newtonsoft.Json.Tests"; Constants=""; FinalDir="Net40"; NuGetDir = "net40"; Framework="net-4.0"; Sign=$true},
+ @{Name = "Newtonsoft.Json.Metro"; TestsName = $null; Constants="NETFX_CORE"; FinalDir="Metro"; NuGetDir = "winrt45"; Framework="net-4.5"; Sign=$true},
# unsigned SL/WP
@{Name = "Newtonsoft.Json.WindowsPhone"; TestsName = $null; Constants="SILVERLIGHT;WINDOWS_PHONE"; FinalDir="WindowsPhone"; NuGetDir = "sl3-wp,sl4-windowsphone71"; Framework="net-4.0"; Sign=$false},
@@ -51,7 +53,7 @@ task Clean {
task Build -depends Clean {
Write-Host -ForegroundColor Green "Updating assembly version"
Write-Host
- Update-AssemblyInfoFiles $sourceDir ($majorVersion + '.0') $version
+ Update-AssemblyInfoFiles $sourceDir ($majorVersion + '.0.0') $version
foreach ($build in $builds)
{
@@ -117,7 +119,7 @@ task Package -depends Build {
Copy-Item -Path $docDir\readme.txt -Destination $workingDir\Package\
Copy-Item -Path $docDir\versions.txt -Destination $workingDir\Package\Bin\
- robocopy $sourceDir $workingDir\Package\Source\Src /MIR /NP /XD .svn bin obj /XF *.suo *.user
+ robocopy $sourceDir $workingDir\Package\Source\Src /MIR /NP /XD .svn bin obj TestResults /XF *.suo *.user
robocopy $buildDir $workingDir\Package\Source\Build /MIR /NP /XD .svn
robocopy $docDir $workingDir\Package\Source\Doc /MIR /NP /XD .svn
robocopy $toolsDir $workingDir\Package\Source\Tools /MIR /NP /XD .svn
diff --git a/Doc/versions.txt b/Doc/versions.txt
index 4ed5b17..82e7cb8 100644
--- a/Doc/versions.txt
+++ b/Doc/versions.txt
@@ -3,7 +3,7 @@ Versions:
Json.NET comes in different versions for the various .NET frameworks.
-Net40:
- .NET latest (4.0)
+ .NET latest (4.0 & 4.5)
-Net35:
.NET 3.5 SP1, Mono
@@ -17,6 +17,9 @@ Json.NET comes in different versions for the various .NET frameworks.
-WindowsPhone:
Windows Phone 7 & 7.1
+-Metro
+ Windows 8 Metro, WinRT 4.5
+
Notes:
diff --git a/Src/Newtonsoft.Json.Tests/Newtonsoft.Json.Tests.Metro.csproj b/Src/Newtonsoft.Json.Tests/Newtonsoft.Json.Tests.Metro.csproj
index 31b4050..6735ed5 100644
--- a/Src/Newtonsoft.Json.Tests/Newtonsoft.Json.Tests.Metro.csproj
+++ b/Src/Newtonsoft.Json.Tests/Newtonsoft.Json.Tests.Metro.csproj
@@ -1,320 +1,320 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
- <PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProductVersion>8.0.30703</ProductVersion>
- <SchemaVersion>2.0</SchemaVersion>
- <ProjectGuid>{8D9C2E69-9FD7-4A7A-866C-739C9207CD0B}</ProjectGuid>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>Newtonsoft.Json.Tests</RootNamespace>
- <AssemblyName>Newtonsoft.Json.Tests</AssemblyName>
- <DefaultLanguage>en-US</DefaultLanguage>
- <FileAlignment>512</FileAlignment>
- <ProjectTypeGuids>{BC8A1FFA-BEE3-4634-8014-F334798102B3};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
- <PackageCertificateKeyFile>Newtonsoft.Json.Tests.Metro_TemporaryKey.pfx</PackageCertificateKeyFile>
- <PackageCertificateThumbprint>E58487D6BF8E40BC44C9BE962D19FB3EFBEB81BD</PackageCertificateThumbprint>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>bin\Debug\</OutputPath>
- <DefineConstants>DEBUG;TRACE;NETFX_CORE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>bin\Release\</OutputPath>
- <DefineConstants>TRACE;NETFX_CORE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM'">
- <DebugSymbols>true</DebugSymbols>
- <OutputPath>bin\ARM\Debug\</OutputPath>
- <DefineConstants>DEBUG;TRACE;NETFX_CORE</DefineConstants>
- <NoWarn>;2008</NoWarn>
- <DebugType>full</DebugType>
- <PlatformTarget>ARM</PlatformTarget>
- <UseVSHostingProcess>false</UseVSHostingProcess>
- <ErrorReport>prompt</ErrorReport>
- <CodeAnalysisRuleSet>ExpressRules.ruleset</CodeAnalysisRuleSet>
- <Prefer32Bit>true</Prefer32Bit>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|ARM'">
- <OutputPath>bin\ARM\Release\</OutputPath>
- <DefineConstants>TRACE;NETFX_CORE</DefineConstants>
- <Optimize>true</Optimize>
- <NoWarn>;2008</NoWarn>
- <DebugType>pdbonly</DebugType>
- <PlatformTarget>ARM</PlatformTarget>
- <UseVSHostingProcess>false</UseVSHostingProcess>
- <ErrorReport>prompt</ErrorReport>
- <CodeAnalysisRuleSet>ExpressRules.ruleset</CodeAnalysisRuleSet>
- <Prefer32Bit>true</Prefer32Bit>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
- <DebugSymbols>true</DebugSymbols>
- <OutputPath>bin\x64\Debug\</OutputPath>
- <DefineConstants>DEBUG;TRACE;NETFX_CORE</DefineConstants>
- <NoWarn>;2008</NoWarn>
- <DebugType>full</DebugType>
- <PlatformTarget>x64</PlatformTarget>
- <UseVSHostingProcess>false</UseVSHostingProcess>
- <ErrorReport>prompt</ErrorReport>
- <CodeAnalysisRuleSet>ExpressRules.ruleset</CodeAnalysisRuleSet>
- <Prefer32Bit>true</Prefer32Bit>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
- <OutputPath>bin\x64\Release\</OutputPath>
- <DefineConstants>TRACE;NETFX_CORE</DefineConstants>
- <Optimize>true</Optimize>
- <NoWarn>;2008</NoWarn>
- <DebugType>pdbonly</DebugType>
- <PlatformTarget>x64</PlatformTarget>
- <UseVSHostingProcess>false</UseVSHostingProcess>
- <ErrorReport>prompt</ErrorReport>
- <CodeAnalysisRuleSet>ExpressRules.ruleset</CodeAnalysisRuleSet>
- <Prefer32Bit>true</Prefer32Bit>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
- <DebugSymbols>true</DebugSymbols>
- <OutputPath>bin\x86\Debug\</OutputPath>
- <DefineConstants>DEBUG;TRACE;NETFX_CORE</DefineConstants>
- <NoWarn>;2008</NoWarn>
- <DebugType>full</DebugType>
- <PlatformTarget>x86</PlatformTarget>
- <UseVSHostingProcess>false</UseVSHostingProcess>
- <ErrorReport>prompt</ErrorReport>
- <CodeAnalysisRuleSet>ExpressRules.ruleset</CodeAnalysisRuleSet>
- <Prefer32Bit>true</Prefer32Bit>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
- <OutputPath>bin\x86\Release\</OutputPath>
- <DefineConstants>TRACE;NETFX_CORE</DefineConstants>
- <Optimize>true</Optimize>
- <NoWarn>;2008</NoWarn>
- <DebugType>pdbonly</DebugType>
- <PlatformTarget>x86</PlatformTarget>
- <UseVSHostingProcess>false</UseVSHostingProcess>
- <ErrorReport>prompt</ErrorReport>
- <CodeAnalysisRuleSet>ExpressRules.ruleset</CodeAnalysisRuleSet>
- <Prefer32Bit>true</Prefer32Bit>
- </PropertyGroup>
- <PropertyGroup>
- <AppXPackage>True</AppXPackage>
- </PropertyGroup>
- <ItemGroup>
- <!--A reference to the entire .Net Framework and Windows SDK are automatically included-->
- <SDKReference Include="MSTestFramework, Version=11.0" />
- <SDKReference Include="TestPlatform, Version=11.0" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Bson\BsonReaderTests.cs" />
- <Compile Include="Bson\BsonWriterTests.cs" />
- <Compile Include="Converters\BinaryConverterTests.cs" />
- <Compile Include="Converters\CustomCreationConverterTests.cs" />
- <Compile Include="Converters\DataSetConverterTests.cs" />
- <Compile Include="Converters\DataTableConverterTests.cs" />
- <Compile Include="Converters\ExpandoObjectConverterTests.cs" />
- <Compile Include="Converters\IsoDateTimeConverterTests.cs" />
- <Compile Include="Converters\JavaScriptDateTimeConverterTests.cs" />
- <Compile Include="Converters\ObjectIdConverterTests.cs" />
- <Compile Include="Converters\RegexConverterTests.cs" />
- <Compile Include="Converters\StringEnumConverterTests.cs" />
- <Compile Include="Converters\VersionConverterTests.cs" />
- <Compile Include="Converters\XmlNodeConverterTest.cs" />
- <Compile Include="ExceptionTests.cs" />
- <Compile Include="JsonArrayAttributeTests.cs" />
- <Compile Include="JsonConvertTest.cs" />
- <Compile Include="JsonTextReaderTest.cs" />
- <Compile Include="JsonTextWriterTest.cs" />
- <Compile Include="JsonValidatingReaderTests.cs" />
- <Compile Include="Linq\ComponentModel\BindingTests.cs" />
- <Compile Include="Linq\ComponentModel\JPropertyDescriptorTests.cs" />
- <Compile Include="Linq\DynamicTests.cs" />
- <Compile Include="Linq\JArrayTests.cs" />
- <Compile Include="Linq\JConstructorTests.cs" />
- <Compile Include="Linq\JObjectTests.cs" />
- <Compile Include="Linq\JPathTests.cs" />
- <Compile Include="Linq\JPropertyTests.cs" />
- <Compile Include="Linq\JRawTests.cs" />
- <Compile Include="Linq\JTokenEqualityComparerTests.cs" />
- <Compile Include="Linq\JTokenReaderTest.cs" />
- <Compile Include="Linq\JTokenTests.cs" />
- <Compile Include="Linq\JTokenWriterTest.cs" />
- <Compile Include="Linq\JValueTests.cs" />
- <Compile Include="Linq\LinqToJsonTest.cs" />
- <Compile Include="PerformanceTests.cs" />
- <Compile Include="Schema\ExtensionsTests.cs" />
- <Compile Include="Schema\JsonSchemaBuilderTests.cs" />
- <Compile Include="Schema\JsonSchemaGeneratorTests.cs" />
- <Compile Include="Schema\JsonSchemaModelBuilderTests.cs" />
- <Compile Include="Schema\JsonSchemaNodeTests.cs" />
- <Compile Include="Schema\JsonSchemaTests.cs" />
- <Compile Include="Serialization\CamelCasePropertyNamesContractResolverTests.cs" />
- <Compile Include="Serialization\ConstructorHandlingTests.cs" />
- <Compile Include="Serialization\ContractResolverTests.cs" />
- <Compile Include="Serialization\DefaultValueHandlingTests.cs" />
- <Compile Include="Serialization\DynamicTests.cs" />
- <Compile Include="Serialization\EntitiesSerializationTests.cs" />
- <Compile Include="Serialization\JsonPropertyCollectionTests.cs" />
- <Compile Include="Serialization\JsonSerializerTest.cs" />
- <Compile Include="Serialization\MissingMemberHandlingTests.cs" />
- <Compile Include="Serialization\NullValueHandlingTests.cs" />
- <Compile Include="Serialization\PopulateTests.cs" />
- <Compile Include="Serialization\PreserveReferencesHandlingTests.cs" />
- <Compile Include="Serialization\SerializationErrorHandlingTests.cs" />
- <Compile Include="Serialization\SerializationEventAttributeTests.cs" />
- <Compile Include="Serialization\TypeNameHandlingTests.cs" />
- <Compile Include="SilverlightTests.cs" />
- <Compile Include="TestFixtureBase.cs" />
- <Compile Include="TestObjects\AbstractGenericBase.cs" />
- <Compile Include="TestObjects\ArgumentConverterPrecedenceClassConverter.cs" />
- <Compile Include="TestObjects\Article.cs" />
- <Compile Include="TestObjects\ArticleCollection.cs" />
- <Compile Include="TestObjects\BadJsonPropertyClass.cs" />
- <Compile Include="TestObjects\Bar.cs" />
- <Compile Include="TestObjects\Car.cs" />
- <Compile Include="TestObjects\CircularReferenceClass.cs" />
- <Compile Include="TestObjects\CircularReferenceWithIdClass.cs" />
- <Compile Include="TestObjects\ClassAndMemberConverterClass.cs" />
- <Compile Include="TestObjects\ClassConverterPrecedenceClassConverter.cs" />
- <Compile Include="TestObjects\ClassWithArray.cs" />
- <Compile Include="TestObjects\ClassWithGuid.cs" />
- <Compile Include="TestObjects\Computer.cs" />
- <Compile Include="TestObjects\ConstructorCaseSensitivityClass.cs" />
- <Compile Include="TestObjects\ConstructorReadonlyFields.cs" />
- <Compile Include="TestObjects\Container.cs" />
- <Compile Include="TestObjects\Content.cs" />
- <Compile Include="TestObjects\ContentBaseClass.cs" />
- <Compile Include="TestObjects\ContentSubClass.cs" />
- <Compile Include="TestObjects\ConverableMembers.cs" />
- <Compile Include="TestObjects\ConverterPrecedenceClass.cs" />
- <Compile Include="TestObjects\ConverterPrecedenceClassConverter.cs" />
- <Compile Include="TestObjects\DateTimeErrorObjectCollection.cs" />
- <Compile Include="TestObjects\DateTimeTestClass.cs" />
- <Compile Include="TestObjects\DefaultValueAttributeTestClass.cs" />
- <Compile Include="TestObjects\DictionaryInterfaceClass.cs" />
- <Compile Include="TestObjects\DoubleClass.cs" />
- <Compile Include="TestObjects\EmployeeReference.cs" />
- <Compile Include="TestObjects\Event.cs" />
- <Compile Include="TestObjects\Foo.cs" />
- <Compile Include="TestObjects\GenericImpl.cs" />
- <Compile Include="TestObjects\GenericListAndDictionaryInterfaceProperties.cs" />
- <Compile Include="TestObjects\GetOnlyPropertyClass.cs" />
- <Compile Include="TestObjects\GoogleMapGeocoderStructure.cs" />
- <Compile Include="TestObjects\HolderClass.cs" />
- <Compile Include="TestObjects\IncompatibleJsonAttributeClass.cs" />
- <Compile Include="TestObjects\InterfacePropertyTestClass.cs" />
- <Compile Include="TestObjects\Invoice.cs" />
- <Compile Include="TestObjects\IPrivateImplementationA.cs" />
- <Compile Include="TestObjects\IPrivateImplementationB.cs" />
- <Compile Include="TestObjects\IPrivateOverriddenImplementation.cs" />
- <Compile Include="TestObjects\JaggedArray.cs" />
- <Compile Include="TestObjects\JsonIgnoreAttributeOnClassTestClass.cs" />
- <Compile Include="TestObjects\JsonIgnoreAttributeTestClass.cs" />
- <Compile Include="TestObjects\JsonPropertyClass.cs" />
- <Compile Include="TestObjects\JsonPropertyWithHandlingValues.cs" />
- <Compile Include="TestObjects\ListErrorObject.cs" />
- <Compile Include="TestObjects\ListErrorObjectCollection.cs" />
- <Compile Include="TestObjects\ListOfIds.cs" />
- <Compile Include="TestObjects\ListTestClass.cs" />
- <Compile Include="TestObjects\LogEntry.cs" />
- <Compile Include="TestObjects\MemberConverterClass.cs" />
- <Compile Include="TestObjects\MemberConverterPrecedenceClassConverter.cs" />
- <Compile Include="TestObjects\MethodExecutorObject.cs" />
- <Compile Include="TestObjects\Movie.cs" />
- <Compile Include="TestObjects\MyClass.cs" />
- <Compile Include="TestObjects\Name.cs" />
- <Compile Include="TestObjects\NonRequest.cs" />
- <Compile Include="TestObjects\NullableDateTimeTestClass.cs" />
- <Compile Include="TestObjects\ObjectArrayPropertyTest.cs" />
- <Compile Include="TestObjects\Person.cs" />
- <Compile Include="TestObjects\PersonError.cs" />
- <Compile Include="TestObjects\PersonPropertyClass.cs" />
- <Compile Include="TestObjects\PersonRaw.cs" />
- <Compile Include="TestObjects\PhoneNumber.cs" />
- <Compile Include="TestObjects\PrivateConstructorTestClass.cs" />
- <Compile Include="TestObjects\PrivateConstructorWithPublicParametizedConstructorTestClass.cs" />
- <Compile Include="TestObjects\PrivateImplementationAClass.cs" />
- <Compile Include="TestObjects\PrivateImplementationBClass.cs" />
- <Compile Include="TestObjects\PrivateMembersClass.cs" />
- <Compile Include="TestObjects\Product.cs" />
- <Compile Include="TestObjects\ProductCollection.cs" />
- <Compile Include="TestObjects\ProductShort.cs" />
- <Compile Include="TestObjects\PropertyCase.cs" />
- <Compile Include="TestObjects\PublicParametizedConstructorRequiringConverterTestClass.cs" />
- <Compile Include="TestObjects\PublicParametizedConstructorTestClass.cs" />
- <Compile Include="TestObjects\PublicParametizedConstructorWithNonPropertyParameterTestClass.cs" />
- <Compile Include="TestObjects\PublicParametizedConstructorWithPropertyNameConflict.cs" />
- <Compile Include="TestObjects\RequestOnly.cs" />
- <Compile Include="TestObjects\RequiredMembersClass.cs" />
- <Compile Include="TestObjects\RoleTransfer.cs" />
- <Compile Include="TestObjects\SearchResult.cs" />
- <Compile Include="TestObjects\SerializationEventTestDictionary.cs" />
- <Compile Include="TestObjects\SerializationEventTestList.cs" />
- <Compile Include="TestObjects\SerializationEventTestObject.cs" />
- <Compile Include="TestObjects\SerializationEventTestObjectWithConstructor.cs" />
- <Compile Include="TestObjects\SetOnlyPropertyClass.cs" />
- <Compile Include="TestObjects\SetOnlyPropertyClass2.cs" />
- <Compile Include="TestObjects\Shortie.cs" />
- <Compile Include="TestObjects\Store.cs" />
- <Compile Include="TestObjects\StoreColor.cs" />
- <Compile Include="TestObjects\StructTest.cs" />
- <Compile Include="TestObjects\SubKlass.cs" />
- <Compile Include="TestObjects\SuperKlass.cs" />
- <Compile Include="TestObjects\TypeClass.cs" />
- <Compile Include="TestObjects\TypedSubHashtable.cs" />
- <Compile Include="TestObjects\UserNullable.cs" />
- <Compile Include="TestObjects\VersionKeyedCollection.cs" />
- <Compile Include="TestObjects\WagePerson.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- <Compile Include="Utilities\DynamicReflectionDelegateFactoryTests.cs" />
- <Compile Include="Utilities\ReflectionUtilsTests.cs" />
- </ItemGroup>
- <ItemGroup>
- <AppxManifest Include="Package.appxmanifest">
- <SubType>Designer</SubType>
- </AppxManifest>
- </ItemGroup>
- <ItemGroup>
- <Content Include="Images\UnitTestLogo.png">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="Images\UnitTestSmallLogo.png">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="Images\UnitTestSplashScreen.png">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="Images\UnitTestStoreLogo.png">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\Newtonsoft.Json\Newtonsoft.Json.Metro.csproj">
- <Project>{263136a2-b89b-424e-a87a-f988caa8d032}</Project>
- <Name>Newtonsoft.Json.Metro</Name>
- </ProjectReference>
- </ItemGroup>
- <ItemGroup>
- <None Include="Newtonsoft.Json.Tests.Metro_TemporaryKey.pfx" />
- </ItemGroup>
- <PropertyGroup Condition=" '$(VisualStudioVersion)' == '' ">
- <VisualStudioVersion>11.0</VisualStudioVersion>
- </PropertyGroup>
- <Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
+ <PropertyGroup>
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+ <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+ <ProductVersion>8.0.30703</ProductVersion>
+ <SchemaVersion>2.0</SchemaVersion>
+ <ProjectGuid>{8D9C2E69-9FD7-4A7A-866C-739C9207CD0B}</ProjectGuid>
+ <OutputType>Library</OutputType>
+ <AppDesignerFolder>Properties</AppDesignerFolder>
+ <RootNamespace>Newtonsoft.Json.Tests</RootNamespace>
+ <AssemblyName>Newtonsoft.Json.Tests</AssemblyName>
+ <DefaultLanguage>en-US</DefaultLanguage>
+ <FileAlignment>512</FileAlignment>
+ <ProjectTypeGuids>{BC8A1FFA-BEE3-4634-8014-F334798102B3};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
+ <PackageCertificateKeyFile>Newtonsoft.Json.Tests.Metro_TemporaryKey.pfx</PackageCertificateKeyFile>
+ <PackageCertificateThumbprint>E58487D6BF8E40BC44C9BE962D19FB3EFBEB81BD</PackageCertificateThumbprint>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugSymbols>true</DebugSymbols>
+ <DebugType>full</DebugType>
+ <Optimize>false</Optimize>
+ <OutputPath>bin\Debug\Metro\</OutputPath>
+ <DefineConstants>DEBUG;TRACE;NETFX_CORE</DefineConstants>
+ <ErrorReport>prompt</ErrorReport>
+ <WarningLevel>4</WarningLevel>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>pdbonly</DebugType>
+ <Optimize>true</Optimize>
+ <OutputPath>bin\Release\Metro\</OutputPath>
+ <DefineConstants>TRACE;NETFX_CORE</DefineConstants>
+ <ErrorReport>prompt</ErrorReport>
+ <WarningLevel>4</WarningLevel>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM'">
+ <DebugSymbols>true</DebugSymbols>
+ <OutputPath>bin\ARM\Debug\</OutputPath>
+ <DefineConstants>DEBUG;TRACE;NETFX_CORE</DefineConstants>
+ <NoWarn>;2008</NoWarn>
+ <DebugType>full</DebugType>
+ <PlatformTarget>ARM</PlatformTarget>
+ <UseVSHostingProcess>false</UseVSHostingProcess>
+ <ErrorReport>prompt</ErrorReport>
+ <CodeAnalysisRuleSet>ExpressRules.ruleset</CodeAnalysisRuleSet>
+ <Prefer32Bit>true</Prefer32Bit>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|ARM'">
+ <OutputPath>bin\ARM\Release\</OutputPath>
+ <DefineConstants>TRACE;NETFX_CORE</DefineConstants>
+ <Optimize>true</Optimize>
+ <NoWarn>;2008</NoWarn>
+ <DebugType>pdbonly</DebugType>
+ <PlatformTarget>ARM</PlatformTarget>
+ <UseVSHostingProcess>false</UseVSHostingProcess>
+ <ErrorReport>prompt</ErrorReport>
+ <CodeAnalysisRuleSet>ExpressRules.ruleset</CodeAnalysisRuleSet>
+ <Prefer32Bit>true</Prefer32Bit>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
+ <DebugSymbols>true</DebugSymbols>
+ <OutputPath>bin\x64\Debug\</OutputPath>
+ <DefineConstants>DEBUG;TRACE;NETFX_CORE</DefineConstants>
+ <NoWarn>;2008</NoWarn>
+ <DebugType>full</DebugType>
+ <PlatformTarget>x64</PlatformTarget>
+ <UseVSHostingProcess>false</UseVSHostingProcess>
+ <ErrorReport>prompt</ErrorReport>
+ <CodeAnalysisRuleSet>ExpressRules.ruleset</CodeAnalysisRuleSet>
+ <Prefer32Bit>true</Prefer32Bit>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
+ <OutputPath>bin\x64\Release\</OutputPath>
+ <DefineConstants>TRACE;NETFX_CORE</DefineConstants>
+ <Optimize>true</Optimize>
+ <NoWarn>;2008</NoWarn>
+ <DebugType>pdbonly</DebugType>
+ <PlatformTarget>x64</PlatformTarget>
+ <UseVSHostingProcess>false</UseVSHostingProcess>
+ <ErrorReport>prompt</ErrorReport>
+ <CodeAnalysisRuleSet>ExpressRules.ruleset</CodeAnalysisRuleSet>
+ <Prefer32Bit>true</Prefer32Bit>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
+ <DebugSymbols>true</DebugSymbols>
+ <OutputPath>bin\x86\Debug\</OutputPath>
+ <DefineConstants>DEBUG;TRACE;NETFX_CORE</DefineConstants>
+ <NoWarn>;2008</NoWarn>
+ <DebugType>full</DebugType>
+ <PlatformTarget>x86</PlatformTarget>
+ <UseVSHostingProcess>false</UseVSHostingProcess>
+ <ErrorReport>prompt</ErrorReport>
+ <CodeAnalysisRuleSet>ExpressRules.ruleset</CodeAnalysisRuleSet>
+ <Prefer32Bit>true</Prefer32Bit>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
+ <OutputPath>bin\x86\Release\</OutputPath>
+ <DefineConstants>TRACE;NETFX_CORE</DefineConstants>
+ <Optimize>true</Optimize>
+ <NoWarn>;2008</NoWarn>
+ <DebugType>pdbonly</DebugType>
+ <PlatformTarget>x86</PlatformTarget>
+ <UseVSHostingProcess>false</UseVSHostingProcess>
+ <ErrorReport>prompt</ErrorReport>
+ <CodeAnalysisRuleSet>ExpressRules.ruleset</CodeAnalysisRuleSet>
+ <Prefer32Bit>true</Prefer32Bit>
+ </PropertyGroup>
+ <PropertyGroup>
+ <AppXPackage>True</AppXPackage>
+ </PropertyGroup>
+ <ItemGroup>
+ <!--A reference to the entire .Net Framework and Windows SDK are automatically included-->
+ <SDKReference Include="MSTestFramework, Version=11.0" />
+ <SDKReference Include="TestPlatform, Version=11.0" />
+ </ItemGroup>
+ <ItemGroup>
+ <Compile Include="Bson\BsonReaderTests.cs" />
+ <Compile Include="Bson\BsonWriterTests.cs" />
+ <Compile Include="Converters\BinaryConverterTests.cs" />
+ <Compile Include="Converters\CustomCreationConverterTests.cs" />
+ <Compile Include="Converters\DataSetConverterTests.cs" />
+ <Compile Include="Converters\DataTableConverterTests.cs" />
+ <Compile Include="Converters\ExpandoObjectConverterTests.cs" />
+ <Compile Include="Converters\IsoDateTimeConverterTests.cs" />
+ <Compile Include="Converters\JavaScriptDateTimeConverterTests.cs" />
+ <Compile Include="Converters\ObjectIdConverterTests.cs" />
+ <Compile Include="Converters\RegexConverterTests.cs" />
+ <Compile Include="Converters\StringEnumConverterTests.cs" />
+ <Compile Include="Converters\VersionConverterTests.cs" />
+ <Compile Include="Converters\XmlNodeConverterTest.cs" />
+ <Compile Include="ExceptionTests.cs" />
+ <Compile Include="JsonArrayAttributeTests.cs" />
+ <Compile Include="JsonConvertTest.cs" />
+ <Compile Include="JsonTextReaderTest.cs" />
+ <Compile Include="JsonTextWriterTest.cs" />
+ <Compile Include="JsonValidatingReaderTests.cs" />
+ <Compile Include="Linq\ComponentModel\BindingTests.cs" />
+ <Compile Include="Linq\ComponentModel\JPropertyDescriptorTests.cs" />
+ <Compile Include="Linq\DynamicTests.cs" />
+ <Compile Include="Linq\JArrayTests.cs" />
+ <Compile Include="Linq\JConstructorTests.cs" />
+ <Compile Include="Linq\JObjectTests.cs" />
+ <Compile Include="Linq\JPathTests.cs" />
+ <Compile Include="Linq\JPropertyTests.cs" />
+ <Compile Include="Linq\JRawTests.cs" />
+ <Compile Include="Linq\JTokenEqualityComparerTests.cs" />
+ <Compile Include="Linq\JTokenReaderTest.cs" />
+ <Compile Include="Linq\JTokenTests.cs" />
+ <Compile Include="Linq\JTokenWriterTest.cs" />
+ <Compile Include="Linq\JValueTests.cs" />
+ <Compile Include="Linq\LinqToJsonTest.cs" />
+ <Compile Include="PerformanceTests.cs" />
+ <Compile Include="Schema\ExtensionsTests.cs" />
+ <Compile Include="Schema\JsonSchemaBuilderTests.cs" />
+ <Compile Include="Schema\JsonSchemaGeneratorTests.cs" />
+ <Compile Include="Schema\JsonSchemaModelBuilderTests.cs" />
+ <Compile Include="Schema\JsonSchemaNodeTests.cs" />
+ <Compile Include="Schema\JsonSchemaTests.cs" />
+ <Compile Include="Serialization\CamelCasePropertyNamesContractResolverTests.cs" />
+ <Compile Include="Serialization\ConstructorHandlingTests.cs" />
+ <Compile Include="Serialization\ContractResolverTests.cs" />
+ <Compile Include="Serialization\DefaultValueHandlingTests.cs" />
+ <Compile Include="Serialization\DynamicTests.cs" />
+ <Compile Include="Serialization\EntitiesSerializationTests.cs" />
+ <Compile Include="Serialization\JsonPropertyCollectionTests.cs" />
+ <Compile Include="Serialization\JsonSerializerTest.cs" />
+ <Compile Include="Serialization\MissingMemberHandlingTests.cs" />
+ <Compile Include="Serialization\NullValueHandlingTests.cs" />
+ <Compile Include="Serialization\PopulateTests.cs" />
+ <Compile Include="Serialization\PreserveReferencesHandlingTests.cs" />
+ <Compile Include="Serialization\SerializationErrorHandlingTests.cs" />
+ <Compile Include="Serialization\SerializationEventAttributeTests.cs" />
+ <Compile Include="Serialization\TypeNameHandlingTests.cs" />
+ <Compile Include="SilverlightTests.cs" />
+ <Compile Include="TestFixtureBase.cs" />
+ <Compile Include="TestObjects\AbstractGenericBase.cs" />
+ <Compile Include="TestObjects\ArgumentConverterPrecedenceClassConverter.cs" />
+ <Compile Include="TestObjects\Article.cs" />
+ <Compile Include="TestObjects\ArticleCollection.cs" />
+ <Compile Include="TestObjects\BadJsonPropertyClass.cs" />
+ <Compile Include="TestObjects\Bar.cs" />
+ <Compile Include="TestObjects\Car.cs" />
+ <Compile Include="TestObjects\CircularReferenceClass.cs" />
+ <Compile Include="TestObjects\CircularReferenceWithIdClass.cs" />
+ <Compile Include="TestObjects\ClassAndMemberConverterClass.cs" />
+ <Compile Include="TestObjects\ClassConverterPrecedenceClassConverter.cs" />
+ <Compile Include="TestObjects\ClassWithArray.cs" />
+ <Compile Include="TestObjects\ClassWithGuid.cs" />
+ <Compile Include="TestObjects\Computer.cs" />
+ <Compile Include="TestObjects\ConstructorCaseSensitivityClass.cs" />
+ <Compile Include="TestObjects\ConstructorReadonlyFields.cs" />
+ <Compile Include="TestObjects\Container.cs" />
+ <Compile Include="TestObjects\Content.cs" />
+ <Compile Include="TestObjects\ContentBaseClass.cs" />
+ <Compile Include="TestObjects\ContentSubClass.cs" />
+ <Compile Include="TestObjects\ConverableMembers.cs" />
+ <Compile Include="TestObjects\ConverterPrecedenceClass.cs" />
+ <Compile Include="TestObjects\ConverterPrecedenceClassConverter.cs" />
+ <Compile Include="TestObjects\DateTimeErrorObjectCollection.cs" />
+ <Compile Include="TestObjects\DateTimeTestClass.cs" />
+ <Compile Include="TestObjects\DefaultValueAttributeTestClass.cs" />
+ <Compile Include="TestObjects\DictionaryInterfaceClass.cs" />
+ <Compile Include="TestObjects\DoubleClass.cs" />
+ <Compile Include="TestObjects\EmployeeReference.cs" />
+ <Compile Include="TestObjects\Event.cs" />
+ <Compile Include="TestObjects\Foo.cs" />
+ <Compile Include="TestObjects\GenericImpl.cs" />
+ <Compile Include="TestObjects\GenericListAndDictionaryInterfaceProperties.cs" />
+ <Compile Include="TestObjects\GetOnlyPropertyClass.cs" />
+ <Compile Include="TestObjects\GoogleMapGeocoderStructure.cs" />
+ <Compile Include="TestObjects\HolderClass.cs" />
+ <Compile Include="TestObjects\IncompatibleJsonAttributeClass.cs" />
+ <Compile Include="TestObjects\InterfacePropertyTestClass.cs" />
+ <Compile Include="TestObjects\Invoice.cs" />
+ <Compile Include="TestObjects\IPrivateImplementationA.cs" />
+ <Compile Include="TestObjects\IPrivateImplementationB.cs" />
+ <Compile Include="TestObjects\IPrivateOverriddenImplementation.cs" />
+ <Compile Include="TestObjects\JaggedArray.cs" />
+ <Compile Include="TestObjects\JsonIgnoreAttributeOnClassTestClass.cs" />
+ <Compile Include="TestObjects\JsonIgnoreAttributeTestClass.cs" />
+ <Compile Include="TestObjects\JsonPropertyClass.cs" />
+ <Compile Include="TestObjects\JsonPropertyWithHandlingValues.cs" />
+ <Compile Include="TestObjects\ListErrorObject.cs" />
+ <Compile Include="TestObjects\ListErrorObjectCollection.cs" />
+ <Compile Include="TestObjects\ListOfIds.cs" />
+ <Compile Include="TestObjects\ListTestClass.cs" />
+ <Compile Include="TestObjects\LogEntry.cs" />
+ <Compile Include="TestObjects\MemberConverterClass.cs" />
+ <Compile Include="TestObjects\MemberConverterPrecedenceClassConverter.cs" />
+ <Compile Include="TestObjects\MethodExecutorObject.cs" />
+ <Compile Include="TestObjects\Movie.cs" />
+ <Compile Include="TestObjects\MyClass.cs" />
+ <Compile Include="TestObjects\Name.cs" />
+ <Compile Include="TestObjects\NonRequest.cs" />
+ <Compile Include="TestObjects\NullableDateTimeTestClass.cs" />
+ <Compile Include="TestObjects\ObjectArrayPropertyTest.cs" />
+ <Compile Include="TestObjects\Person.cs" />
+ <Compile Include="TestObjects\PersonError.cs" />
+ <Compile Include="TestObjects\PersonPropertyClass.cs" />
+ <Compile Include="TestObjects\PersonRaw.cs" />
+ <Compile Include="TestObjects\PhoneNumber.cs" />
+ <Compile Include="TestObjects\PrivateConstructorTestClass.cs" />
+ <Compile Include="TestObjects\PrivateConstructorWithPublicParametizedConstructorTestClass.cs" />
+ <Compile Include="TestObjects\PrivateImplementationAClass.cs" />
+ <Compile Include="TestObjects\PrivateImplementationBClass.cs" />
+ <Compile Include="TestObjects\PrivateMembersClass.cs" />
+ <Compile Include="TestObjects\Product.cs" />
+ <Compile Include="TestObjects\ProductCollection.cs" />
+ <Compile Include="TestObjects\ProductShort.cs" />
+ <Compile Include="TestObjects\PropertyCase.cs" />
+ <Compile Include="TestObjects\PublicParametizedConstructorRequiringConverterTestClass.cs" />
+ <Compile Include="TestObjects\PublicParametizedConstructorTestClass.cs" />
+ <Compile Include="TestObjects\PublicParametizedConstructorWithNonPropertyParameterTestClass.cs" />
+ <Compile Include="TestObjects\PublicParametizedConstructorWithPropertyNameConflict.cs" />
+ <Compile Include="TestObjects\RequestOnly.cs" />
+ <Compile Include="TestObjects\RequiredMembersClass.cs" />
+ <Compile Include="TestObjects\RoleTransfer.cs" />
+ <Compile Include="TestObjects\SearchResult.cs" />
+ <Compile Include="TestObjects\SerializationEventTestDictionary.cs" />
+ <Compile Include="TestObjects\SerializationEventTestList.cs" />
+ <Compile Include="TestObjects\SerializationEventTestObject.cs" />
+ <Compile Include="TestObjects\SerializationEventTestObjectWithConstructor.cs" />
+ <Compile Include="TestObjects\SetOnlyPropertyClass.cs" />
+ <Compile Include="TestObjects\SetOnlyPropertyClass2.cs" />
+ <Compile Include="TestObjects\Shortie.cs" />
+ <Compile Include="TestObjects\Store.cs" />
+ <Compile Include="TestObjects\StoreColor.cs" />
+ <Compile Include="TestObjects\StructTest.cs" />
+ <Compile Include="TestObjects\SubKlass.cs" />
+ <Compile Include="TestObjects\SuperKlass.cs" />
+ <Compile Include="TestObjects\TypeClass.cs" />
+ <Compile Include="TestObjects\TypedSubHashtable.cs" />
+ <Compile Include="TestObjects\UserNullable.cs" />
+ <Compile Include="TestObjects\VersionKeyedCollection.cs" />
+ <Compile Include="TestObjects\WagePerson.cs" />
+ <Compile Include="Properties\AssemblyInfo.cs" />
+ <Compile Include="Utilities\DynamicReflectionDelegateFactoryTests.cs" />
+ <Compile Include="Utilities\ReflectionUtilsTests.cs" />
+ </ItemGroup>
+ <ItemGroup>
+ <AppxManifest Include="Package.appxmanifest">
+ <SubType>Designer</SubType>
+ </AppxManifest>
+ </ItemGroup>
+ <ItemGroup>
+ <Content Include="Images\UnitTestLogo.png">
+ <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+ </Content>
+ <Content Include="Images\UnitTestSmallLogo.png">
+ <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+ </Content>
+ <Content Include="Images\UnitTestSplashScreen.png">
+ <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+ </Content>
+ <Content Include="Images\UnitTestStoreLogo.png">
+ <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+ </Content>
+ </ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\Newtonsoft.Json\Newtonsoft.Json.Metro.csproj">
+ <Project>{263136a2-b89b-424e-a87a-f988caa8d032}</Project>
+ <Name>Newtonsoft.Json.Metro</Name>
+ </ProjectReference>
+ </ItemGroup>
+ <ItemGroup>
+ <None Include="Newtonsoft.Json.Tests.Metro_TemporaryKey.pfx" />
+ </ItemGroup>
+ <PropertyGroup Condition=" '$(VisualStudioVersion)' == '' ">
+ <VisualStudioVersion>11.0</VisualStudioVersion>
+ </PropertyGroup>
+ <Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
- -->
+ -->
</Project> \ No newline at end of file
diff --git a/Src/Newtonsoft.Json.Tests/Properties/AssemblyInfo.cs b/Src/Newtonsoft.Json.Tests/Properties/AssemblyInfo.cs
index e55896b..db242d2 100644
--- a/Src/Newtonsoft.Json.Tests/Properties/AssemblyInfo.cs
+++ b/Src/Newtonsoft.Json.Tests/Properties/AssemblyInfo.cs
@@ -70,7 +70,7 @@ using System.Security;
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
-[assembly: AssemblyVersion("4.0.8.0")]
+[assembly: AssemblyVersion("4.5.0.0")]
#if !PocketPC
-[assembly: AssemblyFileVersion("4.0.8.14718")]
+[assembly: AssemblyFileVersion("4.5.1.14719")]
#endif
diff --git a/Src/Newtonsoft.Json/Newtonsoft.Json.Metro.csproj b/Src/Newtonsoft.Json/Newtonsoft.Json.Metro.csproj
index 4a9d96e..cf485b1 100644
--- a/Src/Newtonsoft.Json/Newtonsoft.Json.Metro.csproj
+++ b/Src/Newtonsoft.Json/Newtonsoft.Json.Metro.csproj
@@ -19,7 +19,7 @@
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
- <OutputPath>bin\Debug\</OutputPath>
+ <OutputPath>bin\Debug\Metro\</OutputPath>
<DefineConstants>DEBUG;TRACE;NETFX_CORE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>3</WarningLevel>
@@ -27,10 +27,11 @@
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
- <OutputPath>bin\Release\</OutputPath>
+ <OutputPath>bin\Release\Metro\</OutputPath>
<DefineConstants>TRACE;NETFX_CORE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
+ <DocumentationFile>bin\Release\Metro\Newtonsoft.Json.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM'">
<DebugSymbols>true</DebugSymbols>
diff --git a/Src/Newtonsoft.Json/Properties/AssemblyInfo.cs b/Src/Newtonsoft.Json/Properties/AssemblyInfo.cs
index 47b1f42..a399274 100644
--- a/Src/Newtonsoft.Json/Properties/AssemblyInfo.cs
+++ b/Src/Newtonsoft.Json/Properties/AssemblyInfo.cs
@@ -83,9 +83,9 @@ using System.Security;
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
-[assembly: AssemblyVersion("4.0.8.0")]
+[assembly: AssemblyVersion("4.5.0.0")]
#if !PocketPC
-[assembly: AssemblyFileVersion("4.0.8.14718")]
+[assembly: AssemblyFileVersion("4.5.1.14719")]
#endif
[assembly: CLSCompliant(true)]