Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>2020-04-21 23:19:04 +0300
committerGitHub <noreply@github.com>2020-04-21 23:19:04 +0300
commitb8f7dde377a06998288a2be2268c91761b411969 (patch)
tree46a8c99e16f84aec1fecbb1fbd0f6ed52954e93a /src/Components/WebAssembly
parent2612ec89b2d7e9297fdb1cc9039e3f1860275073 (diff)
[blazor-wasm] Update dependencies from dotnet/arcade dotnet/blazor (#20972)
* Update dependencies from https://github.com/dotnet/blazor build 20200417.2 - Microsoft.AspNetCore.Components.WebAssembly.Runtime: 3.2.0-rc1.20217.1 -> 3.2.0-rc1.20217.2 * Update dependencies from https://github.com/dotnet/blazor build 20200418.1 - Microsoft.AspNetCore.Components.WebAssembly.Runtime: 3.2.0-rc1.20217.1 -> 3.2.0-rc1.20218.1 * Update dependencies from https://github.com/dotnet/arcade build 20200418.1 - Microsoft.DotNet.Arcade.Sdk: 1.0.0-beta.20208.8 -> 1.0.0-beta.20218.1 - Microsoft.DotNet.GenAPI: 1.0.0-beta.20208.8 -> 1.0.0-beta.20218.1 - Microsoft.DotNet.Helix.Sdk: 2.0.0-beta.20208.8 -> 2.0.0-beta.20218.1 * Update dependencies from https://github.com/dotnet/blazor build 20200420.1 - Microsoft.AspNetCore.Components.WebAssembly.Runtime: 3.2.0-rc1.20217.1 -> 3.2.0-rc1.20220.1 * Update to BROWSER RID Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com> Co-authored-by: Pranav K <prkrishn@hotmail.com>
Diffstat (limited to 'src/Components/WebAssembly')
-rw-r--r--src/Components/WebAssembly/testassets/MonoSanityClient/Examples.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Components/WebAssembly/testassets/MonoSanityClient/Examples.cs b/src/Components/WebAssembly/testassets/MonoSanityClient/Examples.cs
index 1d56128e35..7bae673449 100644
--- a/src/Components/WebAssembly/testassets/MonoSanityClient/Examples.cs
+++ b/src/Components/WebAssembly/testassets/MonoSanityClient/Examples.cs
@@ -58,6 +58,6 @@ namespace MonoSanityClient
public static string GetRuntimeInformation()
=> $"OSDescription: '{RuntimeInformation.OSDescription}';"
+ $" OSArchitecture: '{RuntimeInformation.OSArchitecture}';"
- + $" IsOSPlatform(WEBASSEMBLY): '{RuntimeInformation.IsOSPlatform(OSPlatform.Create("WEBASSEMBLY"))}'";
+ + $" IsOSPlatform(BROWSER): '{RuntimeInformation.IsOSPlatform(OSPlatform.Create("BROWSER"))}'";
}
}