Skip to content

Commit 36162df

Browse files
author
Jake Soenneker
committed
net10
1 parent eb45081 commit 36162df

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup .NET
1919
uses: actions/setup-dotnet@v5
2020
with:
21-
dotnet-version: 9.0.x
21+
dotnet-version: 10.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
@@ -19,12 +19,12 @@ jobs:
1919
- name: Setting up build version
2020
run: |
2121
version=$(($GITHUB_RUN_NUMBER))
22-
echo "BUILD_VERSION=3.0.$version" >> ${GITHUB_ENV}
22+
echo "BUILD_VERSION=4.0.$version" >> ${GITHUB_ENV}
2323
2424
- name: Setup .NET
2525
uses: actions/setup-dotnet@v5
2626
with:
27-
dotnet-version: 9.0.x
27+
dotnet-version: 10.0.x
2828

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

src/Soenneker.Quark.Enums.TextOverflows.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
<?xml version="1.0" encoding="utf-8"?><Project Sdk="Microsoft.NET.Sdk">
1+
<?xml version="1.0" encoding="utf-8"?><Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net9.0</TargetFrameworks>
4+
<TargetFramework>net10.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<Platforms>AnyCPU</Platforms>
77
<RootNamespace>Soenneker.Quark.Enums</RootNamespace>
@@ -11,7 +11,7 @@
1111

1212
<PropertyGroup>
1313
<Description>An HTML CSS keyword set in .NET enumeration form</Description>
14-
<Version Condition="'$(BUILD_VERSION)' == ''">3.0.0</Version>
14+
<Version Condition="'$(BUILD_VERSION)' == ''">4.0.0</Version>
1515
<Version Condition="'$(BUILD_VERSION)' != ''">$(BUILD_VERSION)</Version>
1616
<AssemblyName>Soenneker.Quark.Enums.TextOverflows</AssemblyName>
1717
<PackageId>Soenneker.Quark.Enums.TextOverflows</PackageId>

test/Soenneker.Quark.Enums.TextOverflows.Tests/Soenneker.Quark.Enums.TextOverflows.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>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<IsPackable>false</IsPackable>
77
<UseMicrosoftTestingPlatformRunner>true</UseMicrosoftTestingPlatformRunner>

0 commit comments

Comments
 (0)