diff --git a/eng/Version.Details.props b/eng/Version.Details.props
index 6a8bdc6aa46..b4b1a19c173 100644
--- a/eng/Version.Details.props
+++ b/eng/Version.Details.props
@@ -19,14 +19,14 @@ This file should be imported by eng/Versions.props
1.0.0-prerelease.25467.1
1.0.0-prerelease.25467.1
- 5.0.0-2.26175.11
- 5.0.0-2.26175.11
- 5.0.0-2.26175.11
- 5.0.0-2.26175.11
- 5.0.0-2.26175.11
- 5.0.0-2.26175.11
- 5.0.0-2.26175.11
- 5.0.0-2.26175.11
+ 5.0.0-2.26202.6
+ 5.0.0-2.26202.6
+ 5.0.0-2.26202.6
+ 5.0.0-2.26202.6
+ 5.0.0-2.26202.6
+ 5.0.0-2.26202.6
+ 5.0.0-2.26202.6
+ 5.0.0-2.26202.6
9.0.0
9.0.0
diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml
index 26d2c5b2b38..f81157eeae5 100644
--- a/eng/Version.Details.xml
+++ b/eng/Version.Details.xml
@@ -42,37 +42,37 @@
https://github.com/dotnet/runtime
9d5a6a9aa463d6d10b0b0ba6d5982cc82f363dc3
-
+
https://github.com/dotnet/roslyn
- 444ccb140d1e9e3cf7884e9038945fe46b12a3ca
+ d977c74c96821fd874b6e1d356d4f46d63a7a576
-
+
https://github.com/dotnet/roslyn
- 444ccb140d1e9e3cf7884e9038945fe46b12a3ca
+ d977c74c96821fd874b6e1d356d4f46d63a7a576
-
+
https://github.com/dotnet/roslyn
- 444ccb140d1e9e3cf7884e9038945fe46b12a3ca
+ d977c74c96821fd874b6e1d356d4f46d63a7a576
-
+
https://github.com/dotnet/roslyn
- 444ccb140d1e9e3cf7884e9038945fe46b12a3ca
+ d977c74c96821fd874b6e1d356d4f46d63a7a576
-
+
https://github.com/dotnet/roslyn
- 444ccb140d1e9e3cf7884e9038945fe46b12a3ca
+ d977c74c96821fd874b6e1d356d4f46d63a7a576
-
+
https://github.com/dotnet/roslyn
- 444ccb140d1e9e3cf7884e9038945fe46b12a3ca
+ d977c74c96821fd874b6e1d356d4f46d63a7a576
-
+
https://github.com/dotnet/roslyn
- 444ccb140d1e9e3cf7884e9038945fe46b12a3ca
+ d977c74c96821fd874b6e1d356d4f46d63a7a576
-
+
https://github.com/dotnet/roslyn
- 444ccb140d1e9e3cf7884e9038945fe46b12a3ca
+ d977c74c96821fd874b6e1d356d4f46d63a7a576
diff --git a/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Control/AsyncType.fs b/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Control/AsyncType.fs
index ef75dff9e00..550ff931864 100644
--- a/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Control/AsyncType.fs
+++ b/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Control/AsyncType.fs
@@ -250,11 +250,11 @@ type AsyncType() =
let a = async {
while true do ()
}
- use t = Async.StartAsTask a
+ let t = Async.StartAsTask a
Async.CancelDefaultToken ()
let mutable exceptionThrown = false
try
- waitASec t
+ t.Wait()
with e -> exceptionThrown <- true
Assert.True (exceptionThrown)
Assert.True(t.IsCanceled)