Skip to content

Commit c45f335

Browse files
committed
Update TargetFrameworks
1 parent 4a6b9e8 commit c45f335

File tree

20 files changed

+1598
-2018
lines changed

20 files changed

+1598
-2018
lines changed

.ci/make.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ OUTPUT_DIR="$repo/${output_folder}"
4242
REPO_BINDING="${OUTPUT_DIR}:/sln/${output_folder}"
4343
mkdir -p "$OUTPUT_DIR"
4444

45-
DOTNET_VERSION=${DOTNET_VERSION-6.0.403}
45+
DOTNET_VERSION=${DOTNET_VERSION-8.0.100}
4646

4747
echo -e "\033[34;1mINFO:\033[0m PRODUCT ${product}\033[0m"
4848
echo -e "\033[34;1mINFO:\033[0m VERSION ${STACK_VERSION}\033[0m"

.github/workflows/integration-jobs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ jobs:
3838
steps:
3939
- name: Checkout
4040
uses: actions/checkout@v3
41-
- uses: actions/setup-dotnet@v3
41+
- uses: actions/setup-dotnet@v4
4242
with:
43-
dotnet-version: '6.0.403'
43+
dotnet-version: '8.0.100'
4444
- uses: actions/cache@v3
4545
with:
4646
path: ~/.nuget/packages

.github/workflows/make-bump.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ jobs:
3333
Updates ${{ github.event.inputs.branch }} to version ${{ github.event.inputs.version }}.
3434
labels: "infra,code-gen"
3535
# Add version and backport labels automatically
36-
- uses: actions/setup-dotnet@v3
36+
- uses: actions/setup-dotnet@v4
3737
with:
38-
dotnet-version: '6.0.403'
38+
dotnet-version: '8.0.100'
3939
- name: Install dotnet-script
4040
run: dotnet tool install release-notes --tool-path dotnet-tool
4141

.github/workflows/make-release-notes.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ jobs:
4949
with:
5050
ref: "${{ matrix.branch }}"
5151

52-
- uses: actions/setup-dotnet@v3
52+
- uses: actions/setup-dotnet@v4
5353
with:
54-
dotnet-version: '6.0.403'
54+
dotnet-version: '8.0.100'
5555
- name: Install dotnet-script
5656
run: dotnet tool install release-notes --tool-path dotnet-tool
5757

.github/workflows/stale-jobs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
steps:
2323
- name: Checkout
2424
uses: actions/checkout@v3
25-
- uses: actions/setup-dotnet@v3
25+
- uses: actions/setup-dotnet@v4
2626
with:
27-
dotnet-version: '6.0.403'
27+
dotnet-version: '8.0.100'
2828
- uses: actions/cache@v3
2929
with:
3030
path: ~/.nuget/packages

.github/workflows/test-jobs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121
steps:
2222
- name: Checkout
2323
uses: actions/checkout@v3
24-
- uses: actions/setup-dotnet@v3
24+
- uses: actions/setup-dotnet@v4
2525
with:
26-
dotnet-version: '6.0.403'
26+
dotnet-version: '8.0.100'
2727
- uses: actions/cache@v3
2828
with:
2929
path: ~/.nuget/packages
@@ -51,9 +51,9 @@ jobs:
5151
steps:
5252
- name: Checkout
5353
uses: actions/checkout@v3
54-
- uses: actions/setup-dotnet@v3
54+
- uses: actions/setup-dotnet@v4
5555
with:
56-
dotnet-version: '6.0.403'
56+
dotnet-version: '8.0.100'
5757
- uses: actions/cache@v3
5858
with:
5959
path: ~/.nuget/packages

.github/workflows/unified-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ jobs:
2626
steps:
2727
- name: Checkout
2828
uses: actions/checkout@v3
29-
- uses: actions/setup-dotnet@v3
29+
- uses: actions/setup-dotnet@v4
3030
with:
31-
dotnet-version: '6.0.403'
31+
dotnet-version: '8.0.100'
3232

3333
- run: "./.ci/make.sh assemble ${{ matrix.stack_version }}"
3434
name: Assemble ${{ matrix.stack_version }}

build/scripts/Benchmarking.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ module Benchmarker =
1818
let password = match args.CommandArguments with | Benchmark b -> b.Password | _ -> None
1919
let runInteractive = not args.NonInteractive
2020
let credentials = (username, password)
21-
let runCommandPrefix = "run -f net5.0 -c Release"
21+
let runCommandPrefix = "run -f net8.0 -c Release"
2222
let runCommand =
2323
match (runInteractive, url, credentials) with
2424
| (false, Some url, (Some username, Some password)) -> sprintf "%s -- --all \"%s\" \"%s\" \"%s\"" runCommandPrefix url username password

build/scripts/Documentation.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ module Documentation =
1313

1414
exception DocGenError of string
1515
let Generate args =
16-
let path = Paths.InplaceBuildOutput "DocGenerator" "net5.0"
16+
let path = Paths.InplaceBuildOutput "DocGenerator" "net8.0"
1717
let generator = sprintf "%s.dll" "DocGenerator"
1818

1919
printfn "==> %s" path

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "6.0.403",
3+
"version": "8.0.100",
44
"rollForward": "minor",
55
"allowPrerelease": false
66
},

src/Elastic.Clients.Elasticsearch.JsonNetSerializer/Elastic.Clients.Elasticsearch.JsonNetSerializer.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<PropertyGroup>
1111
<IsPackable>true</IsPackable>
1212
<GenerateDocumentationFile>true</GenerateDocumentationFile>
13-
<TargetFrameworks>netstandard2.0;net461;netstandard2.1;netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
13+
<TargetFrameworks>netstandard2.0;net462;netstandard2.1;net6.0;net8.0</TargetFrameworks>
1414
</PropertyGroup>
1515
<ItemGroup>
1616
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />

0 commit comments

Comments
 (0)