Skip to content

Commit 222edc9

Browse files
committed
SharpX upgraded to 1.1.4
1 parent e7537b7 commit 222edc9

File tree

8 files changed

+10
-8
lines changed

8 files changed

+10
-8
lines changed

paket.dependencies

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ group main
33
framework: netstandard20, netcoreapp31, net50
44
nuget AngleSharp 0.14.0
55
nuget AngleSharp.Io 0.14.0
6-
nuget SharpX 1.0.3
6+
nuget SharpX 1.1.4
77

88
group specs
99
source https://www.nuget.org/api/v2
@@ -13,7 +13,7 @@ group specs
1313
nuget xunit 2.4.1
1414
nuget xunit.runner.visualstudio 2.4.3
1515
nuget FluentAssertions 6.2.0
16-
nuget SharpX 1.0.3
16+
nuget SharpX 1.1.4
1717
nuget Bogus 33.1.1
1818
nuget WaffleGenerator 4.2.1
1919
nuget WaffleGenerator.Bogus 4.2.1

paket.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ NUGET
77
AngleSharp (>= 0.14)
88
FSharp.Core (6.0.1)
99
Microsoft.NETCore.Platforms (3.1) - restriction: || (== net5.0) (== netcoreapp3.1) (&& (== netstandard2.0) (>= netcoreapp2.0)) (&& (== netstandard2.0) (>= netcoreapp3.1))
10-
SharpX (1.0.3)
10+
SharpX (1.1.4)
1111
FSharp.Core (>= 4.7)
1212
System.Runtime.CompilerServices.Unsafe (4.7) - restriction: || (&& (== net5.0) (>= net461)) (&& (== net5.0) (< netcoreapp2.0)) (&& (== net5.0) (< netcoreapp3.1)) (&& (== netcoreapp3.1) (>= net461)) (&& (== netcoreapp3.1) (< netcoreapp2.0)) (== netstandard2.0)
1313
System.Text.Encoding.CodePages (4.7)
@@ -46,7 +46,7 @@ NUGET
4646
Microsoft.NETCore.Platforms (>= 1.1)
4747
Newtonsoft.Json (13.0.1)
4848
NuGet.Frameworks (5.11)
49-
SharpX (1.0.3)
49+
SharpX (1.1.4)
5050
FSharp.Core (>= 4.7)
5151
System.Configuration.ConfigurationManager (5.0)
5252
System.Security.Cryptography.ProtectedData (>= 5.0)

src/PickAll/PostProcessors/Improve.cs

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
using System.Collections.Generic;
44
using System.Linq;
55
using SharpX;
6+
using SharpX.Extensions;
67

78
namespace PickAll
89
{

src/PickAll/PostProcessors/Textify.cs

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
using System.Collections.Generic;
44
using System.Linq;
55
using SharpX;
6+
using SharpX.Extensions;
67

78
namespace PickAll
89
{

src/PickAll/PostProcessors/Uniqueness.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using System.Collections.Generic;
2-
using SharpX;
2+
using SharpX.Extensions;
33

44
namespace PickAll
55
{

tests/PickAll.Specs/Outcomes/FuzzyMatchSpecs.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Xunit;
22
using FluentAssertions;
3-
using SharpX;
3+
using SharpX.Extensions;
44
using PickAll;
55

66
public class FuzzyMatchSpecs

tests/PickAll.Specs/Outcomes/ImproveSpecs.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.Linq;
22
using Xunit;
33
using FluentAssertions;
4-
using SharpX;
4+
using SharpX.Extensions;
55
using PickAll;
66

77
public class ImproveSpecs

tests/PickAll.Specs/Outcomes/UniquenessSpecs.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Linq;
33
using Xunit;
44
using FluentAssertions;
5-
using SharpX;
5+
using SharpX.Extensions;
66
using PickAll;
77

88
public class UniquenessSpecs

0 commit comments

Comments
 (0)