Skip to content

Commit

Permalink
-Fix test
Browse files Browse the repository at this point in the history
-Enable XML documentation for Silverlight project
  • Loading branch information
JamesNK committed Aug 24, 2008
1 parent 94e3beb commit 7f4656a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Src/Newtonsoft.Json.Tests/JsonSerializerTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -201,12 +201,12 @@ public class Person

// "2000-12-15T22:11:03"
[JsonProperty]
[JsonConverter(typeof(IsoDateTimeConverter))]
//[JsonConverter(typeof(IsoDateTimeConverter))]
public DateTime BirthDate { get; set; }

// new Date(976918263055)
[JsonProperty]
[JsonConverter(typeof(JavaScriptDateTimeConverter))]
//[JsonConverter(typeof(JavaScriptDateTimeConverter))]
public DateTime LastModified { get; set; }

// not serialized
Expand Down
2 changes: 2 additions & 0 deletions Src/Newtonsoft.Json/Newtonsoft.Json.Silverlight.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
<NoConfig>true</NoConfig>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>Bin\Debug\Newtonsoft.Json.Silverlight.XML</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
Expand All @@ -35,6 +36,7 @@
<NoConfig>true</NoConfig>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>Bin\Release\Newtonsoft.Json.Silverlight.XML</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="System.Windows" />
Expand Down

0 comments on commit 7f4656a

Please sign in to comment.