Skip to content

Commit bf97c7f

Browse files
committed
upgraded projects to net10
1 parent c0a5ae6 commit bf97c7f

File tree

18 files changed

+20
-20
lines changed

18 files changed

+20
-20
lines changed

.github/workflows/IncrementAlpha.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
steps:
1010

1111
- name: Checkout
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313

1414
- name: Increment variable
1515
uses: action-pack/increment@v2

.github/workflows/IncrementVersion.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
steps:
1010

1111
- name: Checkout
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313

1414
- name: Increment variable
1515
uses: action-pack/increment@v2

.github/workflows/PublishMainToNuget.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313

1414
- name: Checkout
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616

1717
- name: Define Version at GHENV_PACKAGEVERSION
1818
run: |

.github/workflows/PublishToGithub.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313

1414
- name: Checkout
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616

1717
- name: Define Version at GHENV_PACKAGEVERSION
1818
run: |

.github/workflows/PublishToNuget.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313

1414
- name: Checkout
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616

1717
- name: Define Version at GHENV_PACKAGEVERSION
1818
run: |

.github/workflows/TestCommit.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ jobs:
1818

1919
- uses: actions/setup-dotnet@v4
2020
with:
21-
dotnet-version: '6.x'
21+
dotnet-version: '8.x'
2222

2323
- uses: actions/setup-dotnet@v4
2424
with:
25-
dotnet-version: '8.x'
25+
dotnet-version: '10.x'
2626

27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v5
2828

2929
- name: Install dependencies
3030
run: dotnet restore

src/SharpGLTF.Core/SharpGLTF.Core.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-
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net8.0;net10.0</TargetFrameworks>
55
<AssemblyName>SharpGLTF.Core</AssemblyName>
66
<RootNamespace>SharpGLTF</RootNamespace>
77
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>

src/SharpGLTF.Ext.3DTiles/SharpGLTF.Ext.3DTiles.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-
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net8.0;net10.0</TargetFrameworks>
55
<RootNamespace>SharpGLTF</RootNamespace>
66
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
77
</PropertyGroup>

src/SharpGLTF.Ext.Agi/SharpGLTF.Ext.Agi.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-
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net8.0;net10.0</TargetFrameworks>
55
<RootNamespace>SharpGLTF</RootNamespace>
66
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
77
</PropertyGroup>

src/SharpGLTF.Runtime/SharpGLTF.Runtime.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-
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net8.0;net10.0</TargetFrameworks>
55
<AssemblyName>SharpGLTF.Runtime</AssemblyName>
66
<RootNamespace>SharpGLTF.Runtime</RootNamespace>
77
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>

0 commit comments

Comments
 (0)