Skip to content

Commit bd6b7a6

Browse files
authored
Merge pull request #15 from ronaldbosma/update-to-net10
Update integration tests to .NET 10
2 parents 2461d84 + 3c28969 commit bd6b7a6

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/azure-dev.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ jobs:
4949
- name: Setup azd
5050
uses: Azure/setup-azd@v2
5151

52-
- name: Setup .NET 9
52+
- name: Setup .NET 10
5353
uses: actions/setup-dotnet@v5
5454
with:
55-
dotnet-version: '9.0.x'
55+
dotnet-version: '10.0.x'
5656

5757
- name: Print Tool Versions
5858
run: |
@@ -175,10 +175,10 @@ jobs:
175175
id-token: write # Required to fetch an OIDC token for Azure authentication
176176

177177
steps:
178-
- name: Setup .NET 9
178+
- name: Setup .NET 10
179179
uses: actions/setup-dotnet@v5
180180
with:
181-
dotnet-version: '9.0.x'
181+
dotnet-version: '10.0.x'
182182

183183
- name: Download Integration Tests Package
184184
uses: actions/download-artifact@v7

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Before you can deploy this template, make sure you have the following tools inst
4747
**Optional Prerequisites:**
4848

4949
To build and run the [integration tests](#integration-tests) locally, you need the following additional tools:
50-
- [.NET 9 SDK](https://dotnet.microsoft.com/en-us/download/dotnet/9.0)
50+
- [.NET 10 SDK](https://dotnet.microsoft.com/en-us/download/dotnet/10.0)
5151

5252
### Deployment
5353

@@ -195,7 +195,7 @@ For detailed guidance, refer to:
195195

196196
## Integration Tests
197197

198-
The project includes integration tests built with **.NET 9** that validate various scenarios through the deployed Azure services.
198+
The project includes integration tests built with **.NET 10** that validate various scenarios through the deployed Azure services.
199199
The tests implement the same scenarios described in the [Demo](./demos/demo.md) and are located in [ClientTests.cs](tests/IntegrationTests/ClientTests.cs).
200200
They automatically locate your azd environment's `.env` file if available, to retrieve necessary configuration. In the [pipeline](#pipeline) they rely on environment variables set in the workflow.
201201

tests/IntegrationTests/IntegrationTests.csproj

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

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<LangVersion>latest</LangVersion>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>

0 commit comments

Comments
 (0)