Skip to content

Commit 3d3da41

Browse files
committed
add .NET 10 target framework
1 parent dfafcde commit 3d3da41

25 files changed

+62
-157
lines changed

.github/workflows/copilot-setup-steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Setup .NET SDK
4444
uses: actions/setup-dotnet@v5
4545
with:
46-
dotnet-version: "9.x"
46+
dotnet-version: "10.x"
4747
dotnet-quality: "ga"
4848
cache: true
4949
cache-dependency-path: "**/packages.lock.json"

.github/workflows/deploy-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ jobs:
146146
- name: Setup .NET SDK
147147
uses: actions/setup-dotnet@v5
148148
with:
149-
dotnet-version: "9.x"
149+
dotnet-version: "10.x"
150150
dotnet-quality: "ga"
151151
cache: true
152152
cache-dependency-path: "**/packages.lock.json"
@@ -281,7 +281,7 @@ jobs:
281281
- name: Setup .NET SDK
282282
uses: actions/setup-dotnet@v5
283283
with:
284-
dotnet-version: "9.x"
284+
dotnet-version: "10.x"
285285
dotnet-quality: "ga"
286286

287287
- name: Download package

.github/workflows/test-examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Setup .NET SDK
3030
uses: actions/setup-dotnet@v5
3131
with:
32-
dotnet-version: "9.x"
32+
dotnet-version: "10.x"
3333
dotnet-quality: "ga"
3434
cache: true
3535
cache-dependency-path: "**/packages.lock.json"

.github/workflows/test-indicators-matrix.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ jobs:
2424
strategy:
2525
matrix:
2626
os: [windows-latest, ubuntu-latest, macos-latest]
27-
dotnet-version: ["6.0.x", "9.0.x"]
27+
dotnet-version: ["6.0.x", "10.0.x"]
2828

2929
env:
3030
TARGET_FRAMEWORK: >
3131
${{ matrix.dotnet-version == '6.0.x' && 'net6.0' ||
32-
matrix.dotnet-version == '9.0.x' && 'net9.0' }}
32+
matrix.dotnet-version == '10.0.x' && 'net10.0' }}
3333
3434
steps:
3535
- name: Checkout source

.github/workflows/test-indicators.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020

2121
env:
22-
TARGET_FRAMEWORK: net9.0
22+
TARGET_FRAMEWORK: net10.0
2323

2424
steps:
2525
- name: Checkout source
@@ -28,7 +28,7 @@ jobs:
2828
- name: Setup .NET SDK
2929
uses: actions/setup-dotnet@v5
3030
with:
31-
dotnet-version: "9.x"
31+
dotnet-version: "10.x"
3232
dotnet-quality: "ga"
3333
cache: true
3434
cache-dependency-path: "**/packages.lock.json"

.github/workflows/test-performance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Setup .NET SDK
2222
uses: actions/setup-dotnet@v5
2323
with:
24-
dotnet-version: "9.x"
24+
dotnet-version: "10.x"
2525
dotnet-quality: "ga"
2626
cache: true
2727
cache-dependency-path: "**/packages.lock.json"

.vscode/settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
".specify/scripts/ps/": true
99
},
1010
"chat.useNestedAgentsMdFiles": true,
11+
"chatgpt.openOnStartup": false,
1112
"codacy.guardrails.instructionsFile": "manual",
1213
"dotnet.defaultSolution": "Stock.Indicators.sln",
1314
"files.encoding": "utf8",

docs/examples/Backtest/Backtest.csproj

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

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net9.0</TargetFramework>
5+
<TargetFramework>net10.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
</PropertyGroup>
88

docs/examples/ConsoleApp/ConsoleApp.csproj

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

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net9.0</TargetFramework>
5+
<TargetFramework>net10.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
</PropertyGroup>
88

docs/examples/CustomIndicatorsLibrary/CustomIndicatorsLibrary.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">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
</PropertyGroup>
77

0 commit comments

Comments
 (0)