Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp committed Dec 11, 2019
1 parent 227c064 commit be542f5
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/serializer-settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ var settings = new JsonSerializerSettings
DefaultValueHandling = DefaultValueHandling.Ignore
};
```
<sup>[snippet source](/src/Verify.Xunit/Helpers/SerializationSettings.cs#L152-L161) / [anchor](#snippet-defaultserialization)</sup>
<sup>[snippet source](/src/Verify.Xunit/Helpers/SerializationSettings.cs#L153-L162) / [anchor](#snippet-defaultserialization)</sup>
<!-- endsnippet -->


Expand Down
1 change: 1 addition & 0 deletions src/Verify.Xunit.Tests/TypeNameConverterTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using System.Linq;
using System.Threading.Tasks;
using MyNamespace;
using Verify;
using VerifyXunit;
using Xunit;
using Xunit.Abstractions;
Expand Down
1 change: 1 addition & 0 deletions src/Verify.Xunit/Helpers/SerializationSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using System.Linq.Expressions;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using Verify;

// ReSharper disable UseObjectOrCollectionInitializer

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.IO;
using System.Text;

namespace VerifyXunit
namespace Verify
{
public static class LinesScrubber
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using Newtonsoft.Json.Serialization;

namespace VerifyXunit
namespace Verify
{
public class ShortNameBinder :
ISerializationBinder
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
using System;
using Newtonsoft.Json;
using Verify;

namespace VerifyXunit
namespace Verify
{
public class TypeConverter :
WriteOnlyJsonConverter
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Linq;
using Microsoft.CSharp;

namespace VerifyXunit
namespace Verify
{
public static class TypeNameConverter
{
Expand Down
1 change: 1 addition & 0 deletions src/Verify/Verify.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<TargetFrameworks>netstandard2.0;netstandard2.1;net472</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.CodeDom" Version="4.7.0" />
<PackageReference Include="TextCopy" Version="2.0.0-beta.3" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="ProjectDefaults" Version="1.0.34" PrivateAssets="All" />
Expand Down

0 comments on commit be542f5

Please sign in to comment.