Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/azure-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ jobs:
- name: Setup azd
uses: Azure/setup-azd@v2

- name: Setup .NET 9
- name: Setup .NET 10
uses: actions/setup-dotnet@v5
with:
dotnet-version: '9.0.x'
dotnet-version: '10.0.x'

- name: Print Tool Versions
run: |
Expand Down Expand Up @@ -175,10 +175,10 @@ jobs:
id-token: write # Required to fetch an OIDC token for Azure authentication

steps:
- name: Setup .NET 9
- name: Setup .NET 10
uses: actions/setup-dotnet@v5
with:
dotnet-version: '9.0.x'
dotnet-version: '10.0.x'

- name: Download Integration Tests Package
uses: actions/download-artifact@v7
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Before you can deploy this template, make sure you have the following tools inst
**Optional Prerequisites:**

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

### Deployment

Expand Down Expand Up @@ -195,7 +195,7 @@ For detailed guidance, refer to:

## Integration Tests

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

Expand Down
2 changes: 1 addition & 1 deletion tests/IntegrationTests/IntegrationTests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="MSTest.Sdk/4.0.2">

<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
Expand Down