Skip to content

Commit 9b6e49b

Browse files
Remove net6 from github actions. (#1082)
1 parent fddee6b commit 9b6e49b

File tree

5 files changed

+5
-27
lines changed

5 files changed

+5
-27
lines changed

.github/workflows/Build.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,6 @@ jobs:
3939
with:
4040
fetch-depth: 0
4141

42-
- name: Install .NET 6
43-
uses: actions/setup-dotnet@v2
44-
with:
45-
dotnet-version: '6.0.x'
46-
include-prerelease: false
47-
4842
- name: Install .NET 8
4943
uses: actions/setup-dotnet@v3
5044
with:

.github/workflows/External-Storage-Tests.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,6 @@ jobs:
2828
with:
2929
fetch-depth: 0
3030

31-
- name: Install .NET 6
32-
uses: actions/setup-dotnet@v2
33-
with:
34-
dotnet-version: '6.0.x'
35-
3631
- name: Install .NET 8
3732
uses: actions/setup-dotnet@v3
3833
with:

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,6 @@ jobs:
5050
debug: true
5151
languages: ${{ matrix.language }}
5252

53-
- name: Install .NET 6
54-
uses: actions/setup-dotnet@v3
55-
with:
56-
dotnet-version: '6.0.x'
57-
5853
- name: Install .NET 8
5954
uses: actions/setup-dotnet@v3
6055
with:
@@ -64,10 +59,10 @@ jobs:
6459
run: |
6560
$TempSolution = "CodeqlSolution"
6661
dotnet new sln --name $TempSolution --output dotnet --force
67-
dotnet msbuild dotnet\DotNetStandardClasses.sln /t:DumpProjects -p:DumpSolutionName=$TempSolution /m:1 -p:DumpSolutionTargetFrameworkDefault=net6
62+
dotnet msbuild dotnet\DotNetStandardClasses.sln /t:DumpProjects -p:DumpSolutionName=$TempSolution /m:1 -p:DumpSolutionTargetFrameworkDefault=net8
6863
6964
- name: Build temporary solution
70-
run: dotnet build dotnet\CodeqlSolution.sln --framework net6.0
65+
run: dotnet build dotnet\CodeqlSolution.sln --framework net8.0
7166

7267
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
7368
# If this step fails, then you should remove it and run the build manually (see below)

.github/workflows/veracode.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,6 @@ jobs:
4444
with:
4545
repository: ''
4646

47-
- name: Install .NET 6
48-
uses: actions/setup-dotnet@v2
49-
with:
50-
dotnet-version: '6.0.x'
51-
include-prerelease: false
52-
5347
- name: Install .NET 8
5448
uses: actions/setup-dotnet@v3
5549
with:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,11 +85,11 @@ For the following steps must be executed from inside ```dotnet``` directory:
8585

8686
It compiles the solution and copies all the .NET Framework assemblies to the folder C:\KB\CSharpModel\web\bin.
8787

88-
- ```dotnet msbuild /p:TF=net6.0 /p:DeployDirectory=C:\KB\NetModel\web\bin DotNetStandardClasses.sln```
88+
- ```dotnet msbuild /p:TF=net8.0 /p:DeployDirectory=C:\KB\NetModel\web\bin DotNetStandardClasses.sln```
8989

90-
It compiles the solution and copies all the .NET 6 assemblies to the folder C:\KB\NetModel\web\bin.
90+
It compiles the solution and copies all the .NET 8 assemblies to the folder C:\KB\NetModel\web\bin.
9191

92-
- TF: target framework that will be deployed. Valid values are: `net462` (for GeneXus NET Framework generator) and `net6.0` (for GeneXus NET generator).
92+
- TF: target framework that will be deployed. Valid values are: `net462` (for GeneXus NET Framework generator) and `net8.0` (for GeneXus NET generator).
9393
- DeployDirectory: specifies the target directory to copy assemblies.
9494

9595

0 commit comments

Comments
 (0)