Skip to content

Commit 9563e38

Browse files
authored
Merge pull request #40 from Linq2GraphQL/update-nugets
Update nugets
2 parents dcbc4f9 + fbf336e commit 9563e38

File tree

12 files changed

+48
-36
lines changed

12 files changed

+48
-36
lines changed

docs/Linq2GraphQL.Docs/Components/Samples/SamplesViewer.razor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ private async Task ExecuteAsync()
9696
isExecuting = true;
9797
await QueryExecute.ExecuteAsync();
9898
}
99-
catch (Exception ex)
99+
catch (Exception)
100100
{
101101
//TODO add error modal
102102
throw;

src/Linq2GraphQL.Client.Subscriptions/Linq2GraphQL.Client.Subscriptions.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
</PropertyGroup>
1717

1818
<ItemGroup>
19-
<ProjectReference Include="..\Linq2GraphQL.Client\Linq2GraphQL.Client.csproj"/>
19+
<ProjectReference Include="..\Linq2GraphQL.Client\Linq2GraphQL.Client.csproj" />
2020
</ItemGroup>
2121

2222
<ItemGroup>
23-
<PackageReference Include="Websocket.Client" Version="4.6.1"/>
23+
<PackageReference Include="Websocket.Client" Version="5.1.2" />
2424
</ItemGroup>
2525

2626
</Project>
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
namespace Linq2GraphQL.Client
2+
{
3+
public class CustomScalar
4+
{
5+
internal string InternalValue { get; set; }
6+
7+
public override string ToString()
8+
{
9+
return base.ToString();
10+
}
11+
12+
public virtual string Value
13+
{
14+
get { return InternalValue; }
15+
16+
set { InternalValue = value; }
17+
18+
}
19+
}
20+
}

src/Linq2GraphQL.Client/Converters/CustomScalarConverter.cs

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,7 @@
55

66
namespace Linq2GraphQL.Client
77
{
8-
public class CustomScalar
9-
{
10-
internal string InternalValue { get; set; }
11-
12-
13-
public virtual string Value
14-
{
15-
get { return InternalValue; }
16-
17-
set { InternalValue = value; }
18-
19-
}
20-
}
8+
219

2210

2311

src/Linq2GraphQL.Generator/Linq2GraphQL.Generator.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<ItemGroup>
2323
<PackageReference Include="System.CodeDom" Version="8.0.0" />
2424
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
25-
<PackageReference Include="Macross.Json.Extensions" Version="2.0.0" />
25+
<PackageReference Include="Macross.Json.Extensions" Version="3.0.0" />
2626
</ItemGroup>
2727

2828
<ItemGroup>

test/Linq2GraphQL.Console/Linq2GraphQL.Console.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
</PropertyGroup>
99
<ItemGroup>
10-
<PackageReference Include="Websocket.Client" Version="4.6.1" />
10+
<PackageReference Include="Websocket.Client" Version="5.1.2" />
1111
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="8.0.1" />
1212
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" />
1313
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />

test/Linq2GraphQL.TestClientNullable/ExtendedScalars/MacAddress.cs

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,18 @@ public MacAddress(string value)
1818

1919
public override string Value
2020
{
21-
get {
22-
//Customer Code
23-
return base.Value; }
24-
set {
21+
get
22+
{
23+
//Custom Code
24+
25+
return base.Value;
26+
}
27+
set
28+
{
2529
//Custom code
26-
27-
base.Value = value; }
30+
31+
base.Value = value;
32+
}
2833
}
2934

3035

test/Linq2GraphQL.TestServer.Shared/Linq2GraphQL.TestServer.Shared.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="HotChocolate.AspNetCore" Version="13.9.11" />
11-
<PackageReference Include="HotChocolate.Data" Version="13.9.11" />
10+
<PackageReference Include="HotChocolate.AspNetCore" Version="13.9.12" />
11+
<PackageReference Include="HotChocolate.Data" Version="13.9.12" />
1212
</ItemGroup>
1313

1414
</Project>

test/Linq2GraphQL.TestServer/Linq2GraphQL.TestServer.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="HotChocolate.AspNetCore" Version="13.9.11" />
12-
<PackageReference Include="HotChocolate.Data" Version="13.9.11" />
11+
<PackageReference Include="HotChocolate.AspNetCore" Version="13.9.12" />
12+
<PackageReference Include="HotChocolate.Data" Version="13.9.12" />
1313
</ItemGroup>
1414

1515
<ItemGroup>

test/Linq2GraphQL.TestServerNullable/Linq2GraphQL.TestServerNullable.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="HotChocolate.AspNetCore" Version="13.9.11" />
12-
<PackageReference Include="HotChocolate.Data" Version="13.9.11" />
11+
<PackageReference Include="HotChocolate.AspNetCore" Version="13.9.12" />
12+
<PackageReference Include="HotChocolate.Data" Version="13.9.12" />
1313
<PackageReference Include="HotChocolate.Types.Scalars" Version="13.9.12" />
1414
</ItemGroup>
1515

0 commit comments

Comments
 (0)