Skip to content

Commit 87f4ce4

Browse files
committed
Update integration tests to .NET 10
1 parent a5b6fe9 commit 87f4ce4

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
@@ -50,10 +50,10 @@ jobs:
5050
- name: Setup azd
5151
uses: Azure/setup-azd@v2
5252

53-
- name: Setup .NET 9
53+
- name: Setup .NET 10
5454
uses: actions/setup-dotnet@v5
5555
with:
56-
dotnet-version: '9.0.x'
56+
dotnet-version: '10.0.x'
5757

5858
- name: Print Tool Versions
5959
run: |
@@ -169,10 +169,10 @@ jobs:
169169
id-token: write # Required to fetch an OIDC token for Azure authentication
170170

171171
steps:
172-
- name: Setup .NET 9
172+
- name: Setup .NET 10
173173
uses: actions/setup-dotnet@v5
174174
with:
175-
dotnet-version: '9.0.x'
175+
dotnet-version: '10.0.x'
176176

177177
- name: Download Integration Tests Package
178178
uses: actions/download-artifact@v7

README.md

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

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

7272

7373
### Deployment
@@ -231,7 +231,7 @@ For detailed guidance, refer to:
231231

232232
## Integration Tests
233233

234-
The project includes integration tests built with **.NET 9** that validate various scenarios through the deployed Azure services.
234+
The project includes integration tests built with **.NET 10** that validate various scenarios through the deployed Azure services.
235235
The tests implement the same scenarios described in the [Demo](./demos/demo.md) and are located in [UnprotectedApiTests.cs](tests/IntegrationTests/UnprotectedApiTests.cs).
236236
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.
237237

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)