This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Convert Wua History ResultCode to a Name | |
| # 0, and 5 are not used for history | |
| # See https://msdn.microsoft.com/en-us/library/windows/desktop/aa387095(v=vs.85).aspx | |
| function Convert-WuaResultCodeToName | |
| { | |
| param( | |
| [Parameter(Mandatory=$true)] | |
| [int] $ResultCode | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| dotnet new blazorwasm -o BlazorWasmBlog.Blazor |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| dotnet new -i Microsoft.AspNetCore.Blazor.Templates::3.2.0-preview1.20073.1 |