Skip to content

Commit 52467a3

Browse files
committed
Bumped to dotnet 9
1 parent b7f1598 commit 52467a3

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,14 @@ jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414
with:
1515
fetch-depth: 0
1616

1717
- name: Setup .Net SDK
18-
uses: actions/setup-dotnet@v2
18+
uses: actions/setup-dotnet@v4
1919
with:
20-
dotnet-version: 8.x
21-
include-prerelease: false
20+
dotnet-version: 9.x
2221

2322
- name: Build
2423
run: dotnet build -c Release

.github/workflows/publish-to-nuget.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,18 @@ jobs:
99
deploy:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
with:
1414
fetch-depth: 0
1515

1616
- name: Setup .Net SDK
17-
uses: actions/setup-dotnet@v2
17+
uses: actions/setup-dotnet@v4
1818
with:
19-
dotnet-version: 8.x
20-
include-prerelease: false
19+
dotnet-version: 9.x
20+
21+
- name: Modify README.md for NuGet
22+
run: |
23+
sed -i 's/# <img[^>]*>/# /' README.md
2124
2225
- name: Build
2326
run: dotnet build -c Release

src/vpatch.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>net8.0</TargetFramework>
5+
<TargetFramework>net9.0</TargetFramework>
66
<ApplicationIcon>favicon.ico</ApplicationIcon>
77
<Version>2.1.0</Version>
88
<LangVersion>latest</LangVersion>

0 commit comments

Comments
 (0)