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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Prefix your items with `(Template)` if the change is about the template and not
- Removed all references to Uno.SourceGenerationTasks packages and adjusted the dependency injection recipe in ViewModels accordingly.
- Fix Android bottom screen space.
- Fix yaml configuration for tests to always publish test results.
- Append job attempt number for test artifact names in build stage to allow retrying jobs.

## 3.10.X
- Added Dependency Injection validation in the development environment.
Expand Down
2 changes: 1 addition & 1 deletion build/stage-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
pool:
vmImage : $(windowsHostedAgentImage)
variables:
ArtifactName: $(TestsArtifactName)_${{ parameters.applicationEnvironment }}
ArtifactName: $(TestsArtifactName)_${{ parameters.applicationEnvironment }}_Attempt$(System.JobAttempt)
ApplicationEnvironment: ${{ parameters.applicationEnvironment }}
steps:
- template: steps-build-tests.yml
Expand Down