Skip to content

Commit 3d67c92

Browse files
Merge pull request #56 from IowaComputerGurus/feature/update-to-dotnet-10
Updated to .NET 10
2 parents f8bd154 + ed7a658 commit 3d67c92

File tree

5 files changed

+36
-20
lines changed

5 files changed

+36
-20
lines changed

.github/release.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
changelog:
2+
exclude:
3+
labels:
4+
- question
5+
- wontfix
6+
- invalid
7+
categories:
8+
- title: Exciting New Features 🎉
9+
labels:
10+
- enhancement
11+
- feature
12+
- title: Squashed Bugs 🐛
13+
labels:
14+
- bug
15+
- breaking-change
16+
- title: ICG/Backend
17+
labels:
18+
- administrative
19+
- documentation
20+
- title: Other Changes
21+
labels:
22+
- "*"

.github/workflows/ci-build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ jobs:
2323
- name: Ensure .NET Installed
2424
uses: actions/setup-dotnet@v4
2525
with:
26-
dotnet-version: 9.0.x
26+
dotnet-version: 10.0.x
2727

2828
- name: Install GitVersion
29-
uses: gittools/actions/gitversion/setup@v3.1.1
29+
uses: gittools/actions/gitversion/setup@v4.2.0
3030
with:
31-
versionSpec: '6.0.5'
31+
versionSpec: '6.4.0'
3232

3333
- name: Determine Version
3434
id: gitversion
35-
uses: gittools/actions/gitversion/execute@v3.1.1
35+
uses: gittools/actions/gitversion/execute@v4.2.0
3636
with:
3737
useConfigFile: true
3838

.github/workflows/release-build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@ jobs:
2121
- name: Ensure .NET Installed
2222
uses: actions/setup-dotnet@v4
2323
with:
24-
dotnet-version: 9.0.x
24+
dotnet-version: 10.0.x
2525

2626
- name: Install GitVersion
27-
uses: gittools/actions/gitversion/setup@v3.1.1
27+
uses: gittools/actions/gitversion/setup@v4.2.0
2828
with:
29-
versionSpec: '6.0.5'
29+
versionSpec: '6.4.0'
3030

3131
- name: Determine Version
3232
id: gitversion
33-
uses: gittools/actions/gitversion/execute@v3.1.1
33+
uses: gittools/actions/gitversion/execute@v4.2.0
3434
with:
3535
useConfigFile: true
3636

GitVersion.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
mode: ContinuousDeployment
2+
next-version: 1.0.0
23
branches:
34
develop:
45
regex: develop
@@ -7,19 +8,12 @@ branches:
78
prevent-increment:
89
when-current-commit-tagged: true
910
source-branches: []
10-
hotfix:
11-
regex: hotfix[/-]
12-
source-branches: [develop]
13-
prevent-increment:
14-
when-current-commit-tagged: true
15-
is-release-branch: true
1611
pull-request:
17-
regex: (pull|pull\-requests|pr)[/-]
18-
label: 'pr'
19-
label-number-pattern: '[/-](?<number>\d+)[-/]'
12+
regex: ^(pull-requests|pull|pr)[\/-](?<Number>\d+)
13+
label: 'pr{Number}'
2014
increment: Patch
2115
is-release-branch: false
2216
source-branches: []
2317
ignore:
2418
sha: []
25-
merge-message-formats: {}
19+
merge-message-formats: {}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
66
</PropertyGroup>
77

88

99
<ItemGroup>
10-
<PackageReference Include="CsvHelper" Version="27.1.1" />
10+
<PackageReference Include="CsvHelper" Version="33.1.0" />
1111
</ItemGroup>
1212

1313
</Project>

0 commit comments

Comments
 (0)