Skip to content

Commit

Permalink
add zlogger and zstring (#353)
Browse files Browse the repository at this point in the history
* Update registry.json

add zlogger and zstring

* Update registry.json

* add excludedPackages

* Update RegistryTests.cs
  • Loading branch information
MonoLogueChi authored Apr 4, 2024
1 parent 8838a65 commit 049510d
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
16 changes: 16 additions & 0 deletions registry.json
Original file line number Diff line number Diff line change
Expand Up @@ -1430,6 +1430,10 @@
"listed": true,
"version": "4.4.0"
},
"System.IO.Hashing": {
"listed": false,
"version": "6.0.0"
},
"System.IO.Packaging": {
"listed": true,
"version": "4.5.0"
Expand Down Expand Up @@ -1596,6 +1600,10 @@
"listed": true,
"version": "5.28.0"
},
"Utf8StringInterpolation": {
"listed": true,
"version": "1.3.1"
},
"Validation": {
"listed": true,
"version": "2.5.42"
Expand Down Expand Up @@ -1632,8 +1640,16 @@
"listed": true,
"version": "12.0.0"
},
"ZLogger": {
"listed": true,
"version": "2.0.1"
},
"ZstdSharp.Port": {
"listed": true,
"version": "0.5.0"
},
"ZString": {
"listed": true,
"version": "0.1.0"
}
}
6 changes: 5 additions & 1 deletion src/UnityNuGet.Tests/RegistryTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,11 @@ public async Task Ensure_Min_Version_Is_Correct_Ignoring_Analyzers_And_Native_Li
// It has too many versions, the minimum version is lifted so as not to process so many versions
@"UnitsNet.*",
// Most versions < 1.7.0 don't target .netstandard2.0
@"XLParser"
@"XLParser",
// Versions < 1.3.1 has dependencies on PolySharp
@"Utf8StringInterpolation",
// Versions 2.0.0 has dependencies on Utf8StringInterpolation 1.3.0
@"ZLogger"
};

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

0 comments on commit 049510d

Please sign in to comment.