You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix VersionLoader to check local packages for all versions
Previously, VersionLoader only checked artifacts/local-packages for
versions containing 'current' in the name. Now it always checks the
local packages folder first for ANY version before falling back to
the global NuGet cache.
This enables the CI workflow to build packages with versions like
'1.0.0-preview08-pr4-3' and have them correctly resolved during tests.
Copy file name to clipboardExpand all lines: Microsoft.Azure.Cosmos.Encryption.Custom/tests/Microsoft.Azure.Cosmos.Encryption.Custom.CompatibilityTests/SideBySide/VersionLoader.cs
+22-25Lines changed: 22 additions & 25 deletions
Original file line number
Diff line number
Diff line change
@@ -80,37 +80,34 @@ public Type GetType(string fullTypeName)
80
80
81
81
privatestaticstringGetPackagePath(stringversion)
82
82
{
83
-
// For "current" versions (e.g., "1.0.0-current-*"), check local packages first
0 commit comments