Created
January 29, 2024 10:28
-
-
Save liebki/a8f7cb5c3b2051a6187c192f405591f3 to your computer and use it in GitHub Desktop.
Automated .NET 8 Installation and WebAssembly Project Setup
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
curl -sSL https://dot.net/v1/dotnet-install.sh > dotnet-install.sh; chmod +x dotnet-install.sh; ./dotnet-install.sh -c 8.0 -InstallDir ./dotnet8; ./dotnet8/dotnet - version; ./dotnet8/dotnet workload install wasm-tools; ./dotnet8/dotnet publish -c Release -o output; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment