Skip to content

Commit 8a21f59

Browse files
committed
netcoreapp3.1
1 parent 5fe5674 commit 8a21f59

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
lines changed

.github/workflows/workflow.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
- uses: actions/checkout@master
99
- uses: actions/setup-dotnet@master
1010
with:
11-
dotnet-version: '3.0.100'
11+
dotnet-version: '3.1.100'
1212
- run: dotnet tool restore
1313
- run: dotnet format --check --dry-run
1414
- run: dotnet restore
@@ -22,7 +22,7 @@ jobs:
2222
- uses: actions/checkout@master
2323
- uses: actions/setup-dotnet@master
2424
with:
25-
dotnet-version: '3.0.100'
25+
dotnet-version: '3.1.100'
2626
- run: dotnet restore
2727
- run: dotnet build
2828
- run: dotnet test
@@ -34,7 +34,7 @@ jobs:
3434
- uses: actions/checkout@master
3535
- uses: actions/setup-dotnet@master
3636
with:
37-
dotnet-version: '3.0.100'
37+
dotnet-version: '3.1.100'
3838
- run: dotnet restore
3939
- run: dotnet build --configuration Release
4040
- run: dotnet pack --configuration Release

examples/GraphQL.Client.Http.Examples/GraphQL.Client.Http.Examples.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>netcoreapp3.0</TargetFramework>
5+
<TargetFramework>netcoreapp3.1</TargetFramework>
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="3.0.0" />
9+
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="3.1.0" />
1010
</ItemGroup>
1111

1212
<ItemGroup>

src/GraphQL.Client.Http/GraphQL.Client.Http.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
1515
<PackageReference Include="System.Net.Http" Version="4.3.4" />
1616
<PackageReference Include="System.Net.WebSockets.Client" Version="4.3.2" />
17-
<PackageReference Include="System.Text.Json" Version="4.6.0" />
17+
<PackageReference Include="System.Text.Json" Version="4.7.0" />
1818
</ItemGroup>
1919

2020
</Project>

src/GraphQL.Client/GraphQL.Client.csproj

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

1010
<ItemGroup>
11-
<PackageReference Include="Microsoft.CSharp" Version="4.6.0" />
11+
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
1212
</ItemGroup>
1313

1414
<ItemGroup>
15-
<ProjectReference Include="..\GraphQL.Primitives\GraphQL.Primitives.csproj" />
15+
<ProjectReference Include="..\GraphQL.Primitives\GraphQL.Primitives.csproj" />
1616
</ItemGroup>
1717

1818
</Project>

src/GraphQL.Primitives/GraphQL.Primitives.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="Microsoft.CSharp" Version="4.6.0" />
12+
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
1313
</ItemGroup>
1414

1515
</Project>

tests/GraphQL.Client.Http.Tests/GraphQL.Client.Http.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
<Import Project="../tests.props" />
44

55
<PropertyGroup>
6-
<TargetFramework>netcoreapp3.0</TargetFramework>
6+
<TargetFramework>netcoreapp3.1</TargetFramework>
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="3.0.0" />
10+
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="3.1.0" />
1111
</ItemGroup>
1212

1313
<ItemGroup>

tests/GraphQL.Client.Tests/GraphQL.Client.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="../tests.props" />
44

55
<PropertyGroup>
6-
<TargetFramework>netcoreapp3.0</TargetFramework>
6+
<TargetFramework>netcoreapp3.1</TargetFramework>
77
</PropertyGroup>
88

99
<ItemGroup>

tests/GraphQL.Primitives.Tests/GraphQL.Primitives.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="../tests.props" />
44

55
<PropertyGroup>
6-
<TargetFramework>netcoreapp3.0</TargetFramework>
6+
<TargetFramework>netcoreapp3.1</TargetFramework>
77
</PropertyGroup>
88

99
<ItemGroup>

tests/GraphQL.Server.Test/GraphQL.Server.Test.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.0</TargetFramework>
4+
<TargetFramework>netcoreapp3.1</TargetFramework>
55
</PropertyGroup>
66

77
<ItemGroup>

0 commit comments

Comments
 (0)