Skip to content

Commit 69057eb

Browse files
authored
feat: NET 8 (#72)
1 parent e4e8de5 commit 69057eb

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/af-demo-berv-1.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ env:
77
AZURE_FUNCTIONAPP_NAME: af-demo-berv-1
88
AZURE_FUNCTIONAPP_PACKAGE_PATH: azure-functions/publish
99
CONFIGURATION: Release
10-
DOTNET_CORE_VERSION: 6.0.x
10+
DOTNET_CORE_VERSION: 8.0.x
1111
WORKING_DIRECTORY: azure-functions
1212
jobs:
1313
build-and-deploy:

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
uses: actions/setup-dotnet@v4
5555
if: ${{ matrix.language == 'csharp' }}
5656
with:
57-
dotnet-version: '6.0.x'
57+
dotnet-version: '8.0.x'
5858
include-prerelease: true
5959
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
6060
# If this step fails, then you should remove it and run the build manually (see below)

ToDo.Web/ToDo.WebApp/ToDo.WebApp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
</PropertyGroup>
77

azure-functions/azure-functions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net6.0</TargetFramework>
3+
<TargetFramework>net8.0</TargetFramework>
44
<AzureFunctionsVersion>v4</AzureFunctionsVersion>
55
<RootNamespace>azure_functions</RootNamespace>
66
</PropertyGroup>

0 commit comments

Comments
 (0)