Skip to content

Commit

Permalink
Attempt fix for min version test
Browse files Browse the repository at this point in the history
  • Loading branch information
NeferS committed Mar 17, 2024
1 parent 54703d2 commit a81836e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 4 additions & 4 deletions registry.json
Original file line number Diff line number Diff line change
Expand Up @@ -418,11 +418,11 @@
},
"FastMember": {
"listed": true,
"version": "1.4.0"
"version": "1.2.0"
},
"FastMember.Signed": {
"listed": true,
"version": "1.4.0"
"version": "1.2.0"
},
"FluentAssertions": {
"listed": true,
Expand Down Expand Up @@ -1295,7 +1295,7 @@
},
"SixLabors.Fonts": {
"listed": true,
"version": "1.0.0"
"version": "[1.0.0,2.0.0)"
},
"SixLabors.ImageSharp": {
"listed": true,
Expand Down Expand Up @@ -1417,7 +1417,7 @@
},
"System.IO.Packaging": {
"listed": true,
"version": "6.0.0"
"version": "4.5.0"
},
"System.IO.Pipelines": {
"listed": true,
Expand Down
4 changes: 3 additions & 1 deletion src/UnityNuGet.Tests/RegistryTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,9 @@ public async Task Ensure_Min_Version_Is_Correct_Ignoring_Analyzers_And_Native_Li
@"Dapplo.Windows.Messages",
@"Dapplo.Windows.User32",
// It has too many versions, the minimum version is lifted so as not to process so many versions
@"UnitsNet.*"
@"UnitsNet.*",
// Most versions < 1.7.0 don't target .netstandard2.0
@"XLParser"
};

var excludedPackagesRegex = new Regex(@$"^{string.Join('|', excludedPackages)}$");
Expand Down

0 comments on commit a81836e

Please sign in to comment.