We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b9925d commit 14332c6Copy full SHA for 14332c6
1 file changed
test/NuGet.Core.FuncTests/NuGet.XPlat.FuncTest/Package/Download/PackageDownloadRunnerTests.cs
@@ -47,6 +47,29 @@ public static IEnumerable<object[]> PackageTestData()
47
} // expected
48
};
49
50
+ // Basic stable explicit versions with different ids
51
+ yield return new object[]
52
+ {
53
+ new List<(string, string)>
54
55
+ ("Contoso.Core", "1.0.0"),
56
+ ("Contoso.Core.Utils", "1.1.0"),
57
+ ("Contoso.Core", "2.0.0-beta")
58
+ }, // source packages
59
60
61
62
63
+ }, // argument packages
64
+ false, // enablePrerelease
65
+ "myOutput", // output directory subpath
66
67
68
69
+ ("Contoso.Core", "1.0.0")
70
+ } // expected
71
+ };
72
+
73
// Mixed casing on the ID in the *download* argument
74
yield return new object[]
75
{
0 commit comments