Skip to content

Commit ca9b354

Browse files
danihengeveldrenovate[bot]Renovatebotrouke-broersmapentp
authored
Merge master, fix and add tests, consistency (#2712)
* chore(deps): update dependency buildalyzer to v5.0.1 (#2665) * chore(deps): update dependency buildalyzer to v5.0.1 * Update package lock files --------- Co-authored-by: Renovatebot <[email protected]> * chore: fix page links for site * fix: Don't fail the test run if restoring test assemblies fails (#2664) * chore(deps): update xunit-dotnet monorepo to v2.5.1 (#2673) * chore(deps): update xunit-dotnet monorepo to v2.5.1 * Update package lock files --------- Co-authored-by: Renovatebot <[email protected]> * chore(deps): update dependency yamldotnet to v13.4.0 (#2677) * chore(deps): update dependency yamldotnet to v13.4.0 * Update package lock files --------- Co-authored-by: Renovatebot <[email protected]> * chore: F# range math (#2679) * F# range math * Windows x Linux * Up * chore: Passing Stryker options to F# project components (#2680) Co-authored-by: Rouke Broersma <[email protected]> * fix: Use solution file when it's available (#2690) * Use solution file when it's available * fix unit test * sonarqube * chore(compilation): Improve Error and Trace Logging (#2688) Add logs Co-authored-by: Rouke Broersma <[email protected]> * fix: Remove usings from MutantControl (#2694) chore: remove usings from MutantControl Co-authored-by: Rouke Broersma <[email protected]> * chore: Code quality improvements (#2696) * Use string builder in loop * Use find & handle other platform newlines * Use find * Fix duplicate message * Add more range tests * Improve range code * docs: add SAS configuration (#2676) (#2701) docs: add SAS configuration * chore(deps): update dependency launchdarkly.eventsource to v5.1.0 (#2702) * chore(deps): update dependency launchdarkly.eventsource to v5.1.0 * Update package lock files --------- Co-authored-by: Renovatebot <[email protected]> * chore(deps): update dependency yamldotnet to v13.5.0 (#2703) * chore(deps): update dependency yamldotnet to v13.5.0 * Update package lock files --------- Co-authored-by: Renovatebot <[email protected]> * chore(deps): update dependency yamldotnet to v13.5.1 (#2704) * chore(deps): update dependency yamldotnet to v13.5.1 * Update package lock files --------- Co-authored-by: Renovatebot <[email protected]> * chore(deps): update dependency yamldotnet to v13.7.0 (#2705) * chore(deps): update dependency yamldotnet to v13.7.0 * Update package lock files --------- Co-authored-by: Renovatebot <[email protected]> * chore(deps): update xunit-dotnet monorepo (#2711) * chore(deps): update xunit-dotnet monorepo * Update package lock files --------- Co-authored-by: Renovatebot <[email protected]> * chore: Breaking down FilePattern (#2681) * Simplifying DiffIgnoreChangesInput * Update FilePattern.cs * Up * up * Rename the class * up --------- Co-authored-by: Rouke Broersma <[email protected]> * chore: Splitting some C# related extensions in a separate file (#2697) Splitting some C# related extensions in a separate file Co-authored-by: Rouke Broersma <[email protected]> * fix: tests for `OpenReportEnabledInput` help text * fix: typo in re(c)reate * add: tests for baseline target input. change: target input default to 'master' to stay consistent with since target input. --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Renovatebot <[email protected]> Co-authored-by: Rouke Broersma <[email protected]> Co-authored-by: Pent Ploompuu <[email protected]> Co-authored-by: Petr <[email protected]> Co-authored-by: Rouke Broersma <[email protected]> Co-authored-by: Jack Steel <[email protected]> Co-authored-by: Cyrille DUPUYDAUBY <[email protected]> Co-authored-by: Max S <[email protected]>
1 parent e1b4d14 commit ca9b354

File tree

49 files changed

+1471
-577
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+1471
-577
lines changed

ExampleProjects/FsharpMutateTestApp/boolMutateTestApp.Test/boolMutateTestApp.Test.fsproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515
<ItemGroup>
1616
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
17-
<PackageReference Include="xunit" Version="2.5.0" />
18-
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.0" />
17+
<PackageReference Include="xunit" Version="2.5.2" />
18+
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.3" />
1919
<PackageReference Include="coverlet.collector" Version="6.0.0" />
2020
</ItemGroup>
2121

ExampleProjects/Xamarin.Forms/Xamarin.Forms.Tests/Xamarin.Forms.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<ItemGroup>
1010
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
11-
<PackageReference Include="xunit" Version="2.5.0" />
12-
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.0" />
11+
<PackageReference Include="xunit" Version="2.5.2" />
12+
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.3" />
1313
<PackageReference Include="coverlet.collector" Version="6.0.0" />
1414
</ItemGroup>
1515

adding_a_mutator.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ You need to:
7373
- It is ok to mutate new constructs (such as arrow expression) and leave the old constructs as is. The reverse is not true.
7474
- Your mutator must return an empty list (or `yield break`) if it cannot generate any mutation.
7575
- Mutator must not throw.
76-
- Make sure to update the [mutations documentation](docs/mutations.md).
76+
- Make sure to update the [mutations documentation](./docs/mutations.md).
7777

78-
[Back to main contributing document](CONTRIBUTING.md).
78+
[Back to main contributing document](./CONTRIBUTING.md).
7979

8080
[1]: https://docs.microsoft.com/en-us/dotnet/csharp/roslyn-sdk/get-started/syntax-analysis "Get started with syntax analysis"

docs/configuration.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -573,7 +573,15 @@ Command line: `--azure-fileshare-sas "se=2022-08-25T14%3A27Z&sp=rwdl&spr=https&s
573573
Config file: `N/A`
574574

575575
When using the azure file storage [provider](#baselineprovider-string) you must pass credentials for the fileshare to Stryker.
576-
For authentication with the azure fileshare we support Shared Access Signatures. For more information on how to configure a SAS check the [Azure documentation](https://docs.microsoft.com/en-us/azure/storage/common/storage-sas-overview).
576+
For authentication with the azure fileshare we support Shared Access Signatures (SAS).
577+
578+
The SAS should be configured with the following properties:
579+
580+
Allowed services: `File`
581+
Allowed resource types: `Container`, `Object`
582+
Allowed permissions: `Read`, `Write`, `Create`
583+
584+
For more information on how to configure a SAS check the [Azure documentation](https://docs.microsoft.com/en-us/azure/storage/common/storage-sas-overview).
577585

578586
### `baseline recreate` <`flag`>
579587

integrationtest/TargetProjects/EmptyTestProject/EmptyTestProject.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111

1212
<ItemGroup>
1313
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
14-
<PackageReference Include="xunit" Version="2.5.0" />
15-
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.0">
14+
<PackageReference Include="xunit" Version="2.5.2" />
15+
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.3">
1616
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1717
<PrivateAssets>all</PrivateAssets>
1818
</PackageReference>

integrationtest/TargetProjects/EmptyTestProject/packages.lock.json

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,20 @@
2020
},
2121
"xunit": {
2222
"type": "Direct",
23-
"requested": "[2.5.0, )",
24-
"resolved": "2.5.0",
25-
"contentHash": "f2V5wuAdoaq0mRTt9UBmPbVex9HcwFYn+y7WaKUz5Xpakcrv7lhtQWBJUWNY4N3Z+o+atDBLyAALM1QWx04C6Q==",
23+
"requested": "[2.5.2, )",
24+
"resolved": "2.5.2",
25+
"contentHash": "cClLEtMhn9H85jdZILz564FkBHOUP1/KmpColguzWpzXDY8cFRRZ2gW58ahdWBznz8UzRabAUqY+5vZKia+AmQ==",
2626
"dependencies": {
27-
"xunit.analyzers": "1.2.0",
28-
"xunit.assert": "2.5.0",
29-
"xunit.core": "[2.5.0]"
27+
"xunit.analyzers": "1.4.0",
28+
"xunit.assert": "2.5.2",
29+
"xunit.core": "[2.5.2]"
3030
}
3131
},
3232
"xunit.runner.visualstudio": {
3333
"type": "Direct",
34-
"requested": "[2.5.0, )",
35-
"resolved": "2.5.0",
36-
"contentHash": "+Gp9vuC2431yPyKB15YrOTxCuEAErBQUTIs6CquumX1F073UaPHGW0VE/XVJLMh9W4sXdz3TBkcHdFWZrRn2Hw=="
34+
"requested": "[2.5.3, )",
35+
"resolved": "2.5.3",
36+
"contentHash": "HFFL6O+QLEOfs555SqHii48ovVa4CqGYanY+B32BjLpPptdE+wEJmCFNXlLHdEOD5LYeayb9EroaUpydGpcybg=="
3737
},
3838
"Microsoft.CodeCoverage": {
3939
"type": "Transitive",
@@ -978,42 +978,42 @@
978978
},
979979
"xunit.analyzers": {
980980
"type": "Transitive",
981-
"resolved": "1.2.0",
982-
"contentHash": "d3dehV/DASLRlR8stWQmbPPjfYC2tct50Evav+OlsJMkfFqkhYvzO1k0s81lk0px8O0knZU/FqC8SqbXOtn+hw=="
981+
"resolved": "1.4.0",
982+
"contentHash": "7ljnTJfFjz5zK+Jf0h2dd2QOSO6UmFizXsojv/x4QX7TU5vEgtKZPk9RvpkiuUqg2bddtNZufBoKQalsi7djfA=="
983983
},
984984
"xunit.assert": {
985985
"type": "Transitive",
986-
"resolved": "2.5.0",
987-
"contentHash": "wN84pKX5jzfpgJ0bB6arrCA/oelBeYLCpnQ9Wj5xGEVPydKzVSDY5tEatFLHE/rO0+0RC+I4H5igGE118jRh1w==",
986+
"resolved": "2.5.2",
987+
"contentHash": "dZNLJWG5HfMAvWBub7eDZwOkP4xuXJj1TSC2AP3bjzIFVGb8rD8xWTvgXlRBXtgPgH+I4Y5hz2MBQrGqUxjDDg==",
988988
"dependencies": {
989989
"NETStandard.Library": "1.6.1"
990990
}
991991
},
992992
"xunit.core": {
993993
"type": "Transitive",
994-
"resolved": "2.5.0",
995-
"contentHash": "dnV0Mn2s1C0y2m33AylQyMkEyhBQsL4R0302kwSGiEGuY3JwzEmhTa9pnghyMRPliYSs4fXfkEAP+5bKXryGFg==",
994+
"resolved": "2.5.2",
995+
"contentHash": "q1PBUBD1Zxbu5WvRfdpzjUHDzs9vr65gNptEGTQmXISXMXeMG9YPX29Z7oZB0wXSccUCtwQ9uQBd5bkaCMS7hQ==",
996996
"dependencies": {
997-
"xunit.extensibility.core": "[2.5.0]",
998-
"xunit.extensibility.execution": "[2.5.0]"
997+
"xunit.extensibility.core": "[2.5.2]",
998+
"xunit.extensibility.execution": "[2.5.2]"
999999
}
10001000
},
10011001
"xunit.extensibility.core": {
10021002
"type": "Transitive",
1003-
"resolved": "2.5.0",
1004-
"contentHash": "xRm6NIV3i7I+LkjsAJ91Xz2fxJm/oMEi2CYq1G5HlGTgcK1Zo2wNbLO6nKX1VG5FZzXibSdoLwr/MofVvh3mFA==",
1003+
"resolved": "2.5.2",
1004+
"contentHash": "peV3Y8Pt3wNoIdHeeGClI4qKUeiEX0LuihAYqbAU0g99sidiPItMsUAURjkAoo3JqX5Lrsg+jiVukXp4Tijmfw==",
10051005
"dependencies": {
10061006
"NETStandard.Library": "1.6.1",
10071007
"xunit.abstractions": "2.0.3"
10081008
}
10091009
},
10101010
"xunit.extensibility.execution": {
10111011
"type": "Transitive",
1012-
"resolved": "2.5.0",
1013-
"contentHash": "7+v2Bvp+1ew1iMGQVb1glICi8jcNdHbRUX6Ru0dmJBViGdjiS7kyqcX2VxleQhFbKNi+WF0an7/TeTXD283RlQ==",
1012+
"resolved": "2.5.2",
1013+
"contentHash": "w3Q45Rvva0z1KPtXN5j2DjY9VgBCdWT0mkkr+dZKVyzBtIxnIywzvbEFLJix/dzHdE3XYDXbzh5GfLJHGCDTUg==",
10141014
"dependencies": {
10151015
"NETStandard.Library": "1.6.1",
1016-
"xunit.extensibility.core": "[2.5.0]"
1016+
"xunit.extensibility.core": "[2.5.2]"
10171017
}
10181018
},
10191019
"library": {

integrationtest/TargetProjects/ExtraProject.XUnit/ExtraProject.XUnit.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<ItemGroup>
1010
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
11-
<PackageReference Include="xunit" Version="2.5.0" />
12-
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.0">
11+
<PackageReference Include="xunit" Version="2.5.2" />
12+
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.3">
1313
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1414
<PrivateAssets>all</PrivateAssets>
1515
</PackageReference>

integrationtest/TargetProjects/ExtraProject.XUnit/packages.lock.json

Lines changed: 25 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,23 @@
2020
},
2121
"xunit": {
2222
"type": "Direct",
23-
"requested": "[2.5.0, )",
24-
"resolved": "2.5.0",
25-
"contentHash": "f2V5wuAdoaq0mRTt9UBmPbVex9HcwFYn+y7WaKUz5Xpakcrv7lhtQWBJUWNY4N3Z+o+atDBLyAALM1QWx04C6Q==",
23+
"requested": "[2.5.2, )",
24+
"resolved": "2.5.2",
25+
"contentHash": "cClLEtMhn9H85jdZILz564FkBHOUP1/KmpColguzWpzXDY8cFRRZ2gW58ahdWBznz8UzRabAUqY+5vZKia+AmQ==",
2626
"dependencies": {
27-
"xunit.analyzers": "1.2.0",
28-
"xunit.assert": "2.5.0",
29-
"xunit.core": "[2.5.0]"
27+
"xunit.analyzers": "1.4.0",
28+
"xunit.assert": "2.5.2",
29+
"xunit.core": "[2.5.2]"
3030
}
3131
},
3232
"xunit.runner.visualstudio": {
3333
"type": "Direct",
34-
"requested": "[2.5.0, )",
35-
"resolved": "2.5.0",
36-
"contentHash": "+Gp9vuC2431yPyKB15YrOTxCuEAErBQUTIs6CquumX1F073UaPHGW0VE/XVJLMh9W4sXdz3TBkcHdFWZrRn2Hw=="
34+
"requested": "[2.5.3, )",
35+
"resolved": "2.5.3",
36+
"contentHash": "HFFL6O+QLEOfs555SqHii48ovVa4CqGYanY+B32BjLpPptdE+wEJmCFNXlLHdEOD5LYeayb9EroaUpydGpcybg==",
37+
"dependencies": {
38+
"Microsoft.TestPlatform.ObjectModel": "17.7.2"
39+
}
3740
},
3841
"Microsoft.CodeCoverage": {
3942
"type": "Transitive",
@@ -978,42 +981,42 @@
978981
},
979982
"xunit.analyzers": {
980983
"type": "Transitive",
981-
"resolved": "1.2.0",
982-
"contentHash": "d3dehV/DASLRlR8stWQmbPPjfYC2tct50Evav+OlsJMkfFqkhYvzO1k0s81lk0px8O0knZU/FqC8SqbXOtn+hw=="
984+
"resolved": "1.4.0",
985+
"contentHash": "7ljnTJfFjz5zK+Jf0h2dd2QOSO6UmFizXsojv/x4QX7TU5vEgtKZPk9RvpkiuUqg2bddtNZufBoKQalsi7djfA=="
983986
},
984987
"xunit.assert": {
985988
"type": "Transitive",
986-
"resolved": "2.5.0",
987-
"contentHash": "wN84pKX5jzfpgJ0bB6arrCA/oelBeYLCpnQ9Wj5xGEVPydKzVSDY5tEatFLHE/rO0+0RC+I4H5igGE118jRh1w==",
989+
"resolved": "2.5.2",
990+
"contentHash": "dZNLJWG5HfMAvWBub7eDZwOkP4xuXJj1TSC2AP3bjzIFVGb8rD8xWTvgXlRBXtgPgH+I4Y5hz2MBQrGqUxjDDg==",
988991
"dependencies": {
989992
"NETStandard.Library": "1.6.1"
990993
}
991994
},
992995
"xunit.core": {
993996
"type": "Transitive",
994-
"resolved": "2.5.0",
995-
"contentHash": "dnV0Mn2s1C0y2m33AylQyMkEyhBQsL4R0302kwSGiEGuY3JwzEmhTa9pnghyMRPliYSs4fXfkEAP+5bKXryGFg==",
997+
"resolved": "2.5.2",
998+
"contentHash": "q1PBUBD1Zxbu5WvRfdpzjUHDzs9vr65gNptEGTQmXISXMXeMG9YPX29Z7oZB0wXSccUCtwQ9uQBd5bkaCMS7hQ==",
996999
"dependencies": {
997-
"xunit.extensibility.core": "[2.5.0]",
998-
"xunit.extensibility.execution": "[2.5.0]"
1000+
"xunit.extensibility.core": "[2.5.2]",
1001+
"xunit.extensibility.execution": "[2.5.2]"
9991002
}
10001003
},
10011004
"xunit.extensibility.core": {
10021005
"type": "Transitive",
1003-
"resolved": "2.5.0",
1004-
"contentHash": "xRm6NIV3i7I+LkjsAJ91Xz2fxJm/oMEi2CYq1G5HlGTgcK1Zo2wNbLO6nKX1VG5FZzXibSdoLwr/MofVvh3mFA==",
1006+
"resolved": "2.5.2",
1007+
"contentHash": "peV3Y8Pt3wNoIdHeeGClI4qKUeiEX0LuihAYqbAU0g99sidiPItMsUAURjkAoo3JqX5Lrsg+jiVukXp4Tijmfw==",
10051008
"dependencies": {
10061009
"NETStandard.Library": "1.6.1",
10071010
"xunit.abstractions": "2.0.3"
10081011
}
10091012
},
10101013
"xunit.extensibility.execution": {
10111014
"type": "Transitive",
1012-
"resolved": "2.5.0",
1013-
"contentHash": "7+v2Bvp+1ew1iMGQVb1glICi8jcNdHbRUX6Ru0dmJBViGdjiS7kyqcX2VxleQhFbKNi+WF0an7/TeTXD283RlQ==",
1015+
"resolved": "2.5.2",
1016+
"contentHash": "w3Q45Rvva0z1KPtXN5j2DjY9VgBCdWT0mkkr+dZKVyzBtIxnIywzvbEFLJix/dzHdE3XYDXbzh5GfLJHGCDTUg==",
10141017
"dependencies": {
10151018
"NETStandard.Library": "1.6.1",
1016-
"xunit.extensibility.core": "[2.5.0]"
1019+
"xunit.extensibility.core": "[2.5.2]"
10171020
}
10181021
},
10191022
"extraproject": {

integrationtest/TargetProjects/Library.FSharp.XUnit/Library.FSharp.XUnit.fsproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515

1616
<ItemGroup>
1717
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
18-
<PackageReference Include="xunit" Version="2.5.0" />
19-
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.0" />
18+
<PackageReference Include="xunit" Version="2.5.2" />
19+
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.3" />
2020
</ItemGroup>
2121

2222
<ItemGroup>

integrationtest/TargetProjects/Library.FSharp.XUnit/packages.lock.json

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,20 @@
2020
},
2121
"xunit": {
2222
"type": "Direct",
23-
"requested": "[2.5.0, )",
24-
"resolved": "2.5.0",
25-
"contentHash": "f2V5wuAdoaq0mRTt9UBmPbVex9HcwFYn+y7WaKUz5Xpakcrv7lhtQWBJUWNY4N3Z+o+atDBLyAALM1QWx04C6Q==",
23+
"requested": "[2.5.2, )",
24+
"resolved": "2.5.2",
25+
"contentHash": "cClLEtMhn9H85jdZILz564FkBHOUP1/KmpColguzWpzXDY8cFRRZ2gW58ahdWBznz8UzRabAUqY+5vZKia+AmQ==",
2626
"dependencies": {
27-
"xunit.analyzers": "1.2.0",
28-
"xunit.assert": "2.5.0",
29-
"xunit.core": "[2.5.0]"
27+
"xunit.analyzers": "1.4.0",
28+
"xunit.assert": "2.5.2",
29+
"xunit.core": "[2.5.2]"
3030
}
3131
},
3232
"xunit.runner.visualstudio": {
3333
"type": "Direct",
34-
"requested": "[2.5.0, )",
35-
"resolved": "2.5.0",
36-
"contentHash": "+Gp9vuC2431yPyKB15YrOTxCuEAErBQUTIs6CquumX1F073UaPHGW0VE/XVJLMh9W4sXdz3TBkcHdFWZrRn2Hw=="
34+
"requested": "[2.5.3, )",
35+
"resolved": "2.5.3",
36+
"contentHash": "HFFL6O+QLEOfs555SqHii48ovVa4CqGYanY+B32BjLpPptdE+wEJmCFNXlLHdEOD5LYeayb9EroaUpydGpcybg=="
3737
},
3838
"Microsoft.CodeCoverage": {
3939
"type": "Transitive",
@@ -978,42 +978,42 @@
978978
},
979979
"xunit.analyzers": {
980980
"type": "Transitive",
981-
"resolved": "1.2.0",
982-
"contentHash": "d3dehV/DASLRlR8stWQmbPPjfYC2tct50Evav+OlsJMkfFqkhYvzO1k0s81lk0px8O0knZU/FqC8SqbXOtn+hw=="
981+
"resolved": "1.4.0",
982+
"contentHash": "7ljnTJfFjz5zK+Jf0h2dd2QOSO6UmFizXsojv/x4QX7TU5vEgtKZPk9RvpkiuUqg2bddtNZufBoKQalsi7djfA=="
983983
},
984984
"xunit.assert": {
985985
"type": "Transitive",
986-
"resolved": "2.5.0",
987-
"contentHash": "wN84pKX5jzfpgJ0bB6arrCA/oelBeYLCpnQ9Wj5xGEVPydKzVSDY5tEatFLHE/rO0+0RC+I4H5igGE118jRh1w==",
986+
"resolved": "2.5.2",
987+
"contentHash": "dZNLJWG5HfMAvWBub7eDZwOkP4xuXJj1TSC2AP3bjzIFVGb8rD8xWTvgXlRBXtgPgH+I4Y5hz2MBQrGqUxjDDg==",
988988
"dependencies": {
989989
"NETStandard.Library": "1.6.1"
990990
}
991991
},
992992
"xunit.core": {
993993
"type": "Transitive",
994-
"resolved": "2.5.0",
995-
"contentHash": "dnV0Mn2s1C0y2m33AylQyMkEyhBQsL4R0302kwSGiEGuY3JwzEmhTa9pnghyMRPliYSs4fXfkEAP+5bKXryGFg==",
994+
"resolved": "2.5.2",
995+
"contentHash": "q1PBUBD1Zxbu5WvRfdpzjUHDzs9vr65gNptEGTQmXISXMXeMG9YPX29Z7oZB0wXSccUCtwQ9uQBd5bkaCMS7hQ==",
996996
"dependencies": {
997-
"xunit.extensibility.core": "[2.5.0]",
998-
"xunit.extensibility.execution": "[2.5.0]"
997+
"xunit.extensibility.core": "[2.5.2]",
998+
"xunit.extensibility.execution": "[2.5.2]"
999999
}
10001000
},
10011001
"xunit.extensibility.core": {
10021002
"type": "Transitive",
1003-
"resolved": "2.5.0",
1004-
"contentHash": "xRm6NIV3i7I+LkjsAJ91Xz2fxJm/oMEi2CYq1G5HlGTgcK1Zo2wNbLO6nKX1VG5FZzXibSdoLwr/MofVvh3mFA==",
1003+
"resolved": "2.5.2",
1004+
"contentHash": "peV3Y8Pt3wNoIdHeeGClI4qKUeiEX0LuihAYqbAU0g99sidiPItMsUAURjkAoo3JqX5Lrsg+jiVukXp4Tijmfw==",
10051005
"dependencies": {
10061006
"NETStandard.Library": "1.6.1",
10071007
"xunit.abstractions": "2.0.3"
10081008
}
10091009
},
10101010
"xunit.extensibility.execution": {
10111011
"type": "Transitive",
1012-
"resolved": "2.5.0",
1013-
"contentHash": "7+v2Bvp+1ew1iMGQVb1glICi8jcNdHbRUX6Ru0dmJBViGdjiS7kyqcX2VxleQhFbKNi+WF0an7/TeTXD283RlQ==",
1012+
"resolved": "2.5.2",
1013+
"contentHash": "w3Q45Rvva0z1KPtXN5j2DjY9VgBCdWT0mkkr+dZKVyzBtIxnIywzvbEFLJix/dzHdE3XYDXbzh5GfLJHGCDTUg==",
10141014
"dependencies": {
10151015
"NETStandard.Library": "1.6.1",
1016-
"xunit.extensibility.core": "[2.5.0]"
1016+
"xunit.extensibility.core": "[2.5.2]"
10171017
}
10181018
},
10191019
"library.fsharp": {

0 commit comments

Comments
 (0)