Skip to content

Commit 6ec66bc

Browse files
authored
Merge pull request #100 from Arlodotexe/update/net9
Add net9.0 as TFM, upgrade CI to .NET 9 SDK
2 parents 977ab4a + fcfee74 commit 6ec66bc

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
# Steps represent a sequence of tasks that will be executed as part of the job
2121
steps:
2222
- name: Install .NET SDK
23-
uses: actions/setup-dotnet@v1
23+
uses: actions/setup-dotnet@v4
2424
with:
25-
dotnet-version: '8.0.x'
25+
dotnet-version: '9.0.x'
2626

2727
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
2828
- name: Checkout Repository

.github/workflows/publish.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,11 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v3
15+
1516
- name: Setup .NET
16-
uses: actions/setup-dotnet@v2
17+
uses: actions/setup-dotnet@v4
1718
with:
18-
dotnet-version: 8.0.x
19+
dotnet-version: 9.0.x
1920

2021
- name: Restore dependencies
2122
run: dotnet restore

src/OwlCore.Storage.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>netstandard2.0</TargetFramework>
3+
<TargetFrameworks>netstandard2.0;net9.0</TargetFrameworks>
44
<Nullable>enable</Nullable>
55
<LangVersion>12.0</LangVersion>
66
<WarningsAsErrors>nullable</WarningsAsErrors>
@@ -330,7 +330,7 @@ Initial release of OwlCore.Storage.
330330
</ItemGroup>
331331

332332
<ItemGroup>
333-
<None Update="logo.png">
333+
<None Include="logo.png">
334334
<Pack>True</Pack>
335335
<PackagePath>\</PackagePath>
336336
</None>

tests/OwlCore.Storage.Tests/OwlCore.Storage.Tests.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>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77

0 commit comments

Comments
 (0)