Skip to content

Commit 4ec8c8a

Browse files
committed
Update .NET SDK version and add xunit.v3 example #300
Bump .NET SDK version to 9.0.302 in Azure Pipelines YAML files and update version variables. Add an example for referencing xunit.v3 in the README to improve documentation.
1 parent 15f059d commit 4ec8c8a

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@ This library brings in Microsoft's dependency injection container to Xunit by le
1515

1616
Also please check the [migration guide](https://xunit.net/docs/getting-started/v3/migration) from xUnit for test authors.
1717

18+
### Example on how to reference xunit.v3
19+
20+
```xml
21+
<PackageReference Include="xunit.v3" Version="2.0.3" />
22+
```
23+
1824
## Getting started
1925

2026
### Nuget package

azure-pipeline-PR.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ steps:
1717
displayName: 'Use .NET 9.0 sdk'
1818
inputs:
1919
packageType: sdk
20-
version: 9.0.301
20+
version: 9.0.302
2121
installationPath: $(Agent.ToolsDirectory)/dotnet
2222
- script: echo Started restoring the source code
2323
- task: DotNetCoreCLI@2

azure-pipelines.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
variables:
22
Major: 9
3-
Minor: 0
4-
Revision: 6
3+
Minor: 1
4+
Revision: 0
55
BuildConfiguration: Release
66

77
name: $(Major).$(Minor).$(Revision)
@@ -25,7 +25,7 @@ steps:
2525
displayName: 'Use .NET 9.0 sdk'
2626
inputs:
2727
packageType: sdk
28-
version: 9.0.301
28+
version: 9.0.302
2929
installationPath: $(Agent.ToolsDirectory)/dotnet
3030
- script: echo Started restoring the source code
3131
- task: DotNetCoreCLI@2

0 commit comments

Comments
 (0)