Skip to content

Commit 68b4815

Browse files
author
Jake Soenneker
committed
Hello .NET 9
1 parent 76d3c1b commit 68b4815

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/build-and-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v4
1717

18-
- name: Setup .NET 8.0
18+
- name: Setup .NET 9.0
1919
uses: actions/setup-dotnet@v4
2020
with:
21-
dotnet-version: 8.0.x
21+
dotnet-version: 9.0.x
2222

2323
- name: Install dependencies with retry
2424
run: |

.github/workflows/publish-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ jobs:
2020
- name: Setting up build version
2121
run: |
2222
version=$(($GITHUB_RUN_NUMBER))
23-
echo "BUILD_VERSION=2.1.$version" >> ${GITHUB_ENV}
23+
echo "BUILD_VERSION=3.0.$version" >> ${GITHUB_ENV}
2424
2525
- name: Setup .NET Core 8.0
2626
uses: actions/setup-dotnet@v4
2727
with:
28-
dotnet-version: 8.0.x
28+
dotnet-version: 9.0.x
2929

3030
- name: Install dependencies with retry
3131
run: |

src/Soenneker.Extensions.Long.csproj

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

1010
<PropertyGroup>
1111
<Description>A collection of helpful Long (64 bit integer) extension methods</Description>
12-
<Version Condition="'$(BUILD_VERSION)' == ''">2.1.0</Version>
12+
<Version Condition="'$(BUILD_VERSION)' == ''">3.0.0</Version>
1313
<Version Condition="'$(BUILD_VERSION)' != ''">$(BUILD_VERSION)</Version>
1414
<AssemblyName>Soenneker.Extensions.Long</AssemblyName>
1515
<PackageId>Soenneker.Extensions.Long</PackageId>

test/Soenneker.Extensions.Long.Tests/Soenneker.Extensions.Long.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
<Nullable>enable</Nullable>
66
<IsPackable>false</IsPackable>
77
</PropertyGroup>

0 commit comments

Comments
 (0)