We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9111770 commit 0f1c7c3Copy full SHA for 0f1c7c3
1 file changed
Algorithm.Interop/Environment.cs
@@ -60,9 +60,12 @@ public static void InstallEnvironment()
60
{
61
if (!File.Exists($"{dll_path}{fn}"))
62
63
- wc.DownloadFile(
64
- new Uri($"{cloudUrl}{version}/{fn}", UriKind.Absolute),
65
- Path.GetFullPath($"{dll_path}{fn}"));
+ new Thread(() =>
+ {
+ wc.DownloadFile(
66
+ new Uri($"{cloudUrl}{version}/{fn}", UriKind.Absolute),
67
+ Path.GetFullPath($"{dll_path}{fn}"));
68
+ }).Start();
69
}
70
71
wc.Dispose();
0 commit comments