Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 5d9f9d4

Browse files
committed
Move System.Net tests back to pre-release versions temporarily to fix missing SecureString
The stable versioned packages use an older codebase currently than the latest pre-release. That codebase is still using SecureString in System.Private.Networking, but the dependency was omitted since crypto is still pre-release but networking had to be marked stable for UWP. This missing dependency was causing tests to fail. Rather than just list the dependency I am moving these tests back to pre-release packages for the System.Net contracts, since System.Net packages are under active development it is better to have the tests running against latest than the stable bits. Once we have newer versions published we'll update these tests to use those.
1 parent ee1ec28 commit 5d9f9d4

File tree

10 files changed

+2085
-799
lines changed

10 files changed

+2085
-799
lines changed

src/System.Net.Http.WinHttpHandler/tests/FunctionalTests/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"System.Globalization": "4.0.10",
55
"System.IO": "4.0.10",
66
"System.IO.Compression": "4.0.0",
7-
"System.Net.Http": "4.0.0",
8-
"System.Net.Primitives": "4.0.10",
7+
"System.Net.Http": "4.0.0-beta-*",
8+
"System.Net.Primitives": "4.0.10-beta-*",
99
"System.Resources.ResourceManager": "4.0.0",
1010
"System.Runtime.Extensions": "4.0.10",
1111
"System.Runtime.Handles": "4.0.0",

src/System.Net.Http.WinHttpHandler/tests/FunctionalTests/project.lock.json

Lines changed: 321 additions & 135 deletions
Large diffs are not rendered by default.

src/System.Net.Http.WinHttpHandler/tests/UnitTests/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"Microsoft.Win32.Primitives": "4.0.0",
44
"System.Globalization": "4.0.10",
55
"System.IO": "4.0.10",
6-
"System.Net.Http": "4.0.0",
7-
"System.Net.Primitives": "4.0.10",
6+
"System.Net.Http": "4.0.0-beta-*",
7+
"System.Net.Primitives": "4.0.10-beta-*",
88
"System.Resources.ResourceManager": "4.0.0",
99
"System.Runtime.Extensions": "4.0.10",
1010
"System.Runtime.Handles": "4.0.0",

0 commit comments

Comments
 (0)