Skip to content

Instantly share code, notes, and snippets.

@liebki
Created January 29, 2024 10:28
Show Gist options
  • Save liebki/a8f7cb5c3b2051a6187c192f405591f3 to your computer and use it in GitHub Desktop.
Save liebki/a8f7cb5c3b2051a6187c192f405591f3 to your computer and use it in GitHub Desktop.
Automated .NET 8 Installation and WebAssembly Project Setup
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