diff --git a/.github/workflows/Build.yml b/.github/workflows/Build.yml index 402287cf9..5569895bb 100644 --- a/.github/workflows/Build.yml +++ b/.github/workflows/Build.yml @@ -39,12 +39,6 @@ jobs: with: fetch-depth: 0 - - name: Install .NET 6 - uses: actions/setup-dotnet@v2 - with: - dotnet-version: '6.0.x' - include-prerelease: false - - name: Install .NET 8 uses: actions/setup-dotnet@v3 with: diff --git a/.github/workflows/External-Storage-Tests.yml b/.github/workflows/External-Storage-Tests.yml index fbdafdbba..731048962 100644 --- a/.github/workflows/External-Storage-Tests.yml +++ b/.github/workflows/External-Storage-Tests.yml @@ -28,11 +28,6 @@ jobs: with: fetch-depth: 0 - - name: Install .NET 6 - uses: actions/setup-dotnet@v2 - with: - dotnet-version: '6.0.x' - - name: Install .NET 8 uses: actions/setup-dotnet@v3 with: diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 70b0c49ec..c331b8f89 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -50,11 +50,6 @@ jobs: debug: true languages: ${{ matrix.language }} - - name: Install .NET 6 - uses: actions/setup-dotnet@v3 - with: - dotnet-version: '6.0.x' - - name: Install .NET 8 uses: actions/setup-dotnet@v3 with: @@ -64,10 +59,10 @@ jobs: run: | $TempSolution = "CodeqlSolution" dotnet new sln --name $TempSolution --output dotnet --force - dotnet msbuild dotnet\DotNetStandardClasses.sln /t:DumpProjects -p:DumpSolutionName=$TempSolution /m:1 -p:DumpSolutionTargetFrameworkDefault=net6 + dotnet msbuild dotnet\DotNetStandardClasses.sln /t:DumpProjects -p:DumpSolutionName=$TempSolution /m:1 -p:DumpSolutionTargetFrameworkDefault=net8 - name: Build temporary solution - run: dotnet build dotnet\CodeqlSolution.sln --framework net6.0 + run: dotnet build dotnet\CodeqlSolution.sln --framework net8.0 # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) diff --git a/.github/workflows/veracode.yml b/.github/workflows/veracode.yml index b635e46b3..c5d13931a 100644 --- a/.github/workflows/veracode.yml +++ b/.github/workflows/veracode.yml @@ -44,12 +44,6 @@ jobs: with: repository: '' - - name: Install .NET 6 - uses: actions/setup-dotnet@v2 - with: - dotnet-version: '6.0.x' - include-prerelease: false - - name: Install .NET 8 uses: actions/setup-dotnet@v3 with: diff --git a/README.md b/README.md index 6f4534743..c2e9d9334 100644 --- a/README.md +++ b/README.md @@ -85,11 +85,11 @@ For the following steps must be executed from inside ```dotnet``` directory: It compiles the solution and copies all the .NET Framework assemblies to the folder C:\KB\CSharpModel\web\bin. -- ```dotnet msbuild /p:TF=net6.0 /p:DeployDirectory=C:\KB\NetModel\web\bin DotNetStandardClasses.sln``` +- ```dotnet msbuild /p:TF=net8.0 /p:DeployDirectory=C:\KB\NetModel\web\bin DotNetStandardClasses.sln``` -It compiles the solution and copies all the .NET 6 assemblies to the folder C:\KB\NetModel\web\bin. +It compiles the solution and copies all the .NET 8 assemblies to the folder C:\KB\NetModel\web\bin. -- TF: target framework that will be deployed. Valid values are: `net462` (for GeneXus NET Framework generator) and `net6.0` (for GeneXus NET generator). +- TF: target framework that will be deployed. Valid values are: `net462` (for GeneXus NET Framework generator) and `net8.0` (for GeneXus NET generator). - DeployDirectory: specifies the target directory to copy assemblies.