Skip to content

Commit cc28309

Browse files
committed
Bump .NET to 8.0
1 parent a489a87 commit cc28309

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Azure Developer CLI",
3-
"image": "mcr.microsoft.com/devcontainers/dotnet:7.0-bullseye",
3+
"image": "mcr.microsoft.com/devcontainers/dotnet:8.0-bookworm",
44
"features": {
55
// See https://containers.dev/features for list of features
66

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The following prerequisites are required to use this application. Please ensure
1919
curl -fsSL https://aka.ms/install-azd.sh | bash
2020
```
2121
22-
- [.Net SDK 7.0](https://dotnet.microsoft.com/en-us/download/dotnet/7.0)
22+
- [.Net SDK 8.0](https://dotnet.microsoft.com/en-us/download/dotnet/8.0)
2323
2424
- [Git (2.36.1+)](https://git-scm.com/)
2525

infra/main.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ module web './core/host/appservice.bicep' = {
5959
location: location
6060
appServicePlanId: appServicePlan.outputs.id
6161
runtimeName: 'dotnetcore'
62-
runtimeVersion: '7.0'
62+
runtimeVersion: '8.0'
6363
tags: union(tags, { 'azd-service-name': 'web' })
6464
}
6565
}

src/MyAzureWebApp.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>net7.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<_EnableMacOSCodeSign>false</_EnableMacOSCodeSign>

0 commit comments

Comments
 (0)