Skip to content

Commit 6b6647f

Browse files
authored
feat: add .net8 and allow .net6 in generator (#670)
This references #641. This closes #659. This fixes #633.
1 parent b39ae58 commit 6b6647f

29 files changed

+44
-1440
lines changed

.github/workflows/dotnet-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup .NET
1818
uses: actions/setup-dotnet@v3
1919
with:
20-
dotnet-version: 7.x
20+
dotnet-version: 8.x
2121

2222
- name: Semantic Release
2323
uses: cycjimmy/semantic-release-action@v3

.github/workflows/dotnet-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup .NET
2020
uses: actions/setup-dotnet@v3
2121
with:
22-
dotnet-version: 7.x
22+
dotnet-version: 8.x
2323

2424
- name: Create Kubernetes Cluster
2525
uses: helm/[email protected]

.github/workflows/gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Setup .NET
2626
uses: actions/setup-dotnet@v3
2727
with:
28-
dotnet-version: 7.x
28+
dotnet-version: 8.x
2929

3030
- run: dotnet tool restore
3131

.github/workflows/security-analysis.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,23 +17,18 @@ jobs:
1717
name: Analyze
1818
runs-on: ubuntu-latest
1919

20-
strategy:
21-
fail-fast: false
22-
matrix:
23-
language: ["csharp"]
24-
2520
steps:
2621
- uses: actions/checkout@v3
2722

2823
- name: Initialize CodeQL
2924
uses: github/codeql-action/init@v2
3025
with:
31-
languages: ${{ matrix.language }}
26+
languages: csharp
3227

3328
- name: Setup .NET
3429
uses: actions/setup-dotnet@v3
3530
with:
36-
dotnet-version: 7.x
31+
dotnet-version: 8.x
3732

3833
- name: Build
3934
run: dotnet build --configuration Release

_old/config/CodeAnalysis.targets

Lines changed: 0 additions & 13 deletions
This file was deleted.

_old/config/Common.targets

Lines changed: 0 additions & 46 deletions
This file was deleted.

_old/config/CommonTests.targets

Lines changed: 0 additions & 27 deletions
This file was deleted.

_old/config/stylecop.json

Lines changed: 0 additions & 11 deletions
This file was deleted.

_old/tests/KubeOps.Test/Operator/Caching/ResourceCache.Test.cs

Lines changed: 0 additions & 209 deletions
This file was deleted.

0 commit comments

Comments
 (0)