Skip to content

Commit bf41b95

Browse files
committed
.NET 10
1 parent a720c65 commit bf41b95

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"name": "C# (.NET)",
55
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6-
"image": "mcr.microsoft.com/devcontainers/dotnet:9.0",
6+
"image": "mcr.microsoft.com/devcontainers/dotnet:10.0",
77

88
// Features to add to the dev container. More info: https://containers.dev/features.
99
// "features": {},

.github/workflows/CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ jobs:
2828
build:
2929
name: Build
3030
runs-on: ubuntu-latest
31-
31+
3232
steps:
3333
- uses: actions/checkout@v6
3434

3535
- name: Setup .NET
3636
uses: actions/setup-dotnet@v5
3737
with:
38-
dotnet-version: 9.0.x
38+
dotnet-version: 10.0.x
3939

4040
- name : dotnet restore
4141
run: dotnet restore

src/PhoneNumbers.Utilities.TestGenerator/PhoneNumbers.Utilities.TestGenerator.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net9.0</TargetFramework>
5+
<TargetFramework>net10.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
</PropertyGroup>

0 commit comments

Comments
 (0)