Tom Wor

Professional web developer and indie game creator. Passionate about autonomy for creative professionals, true ownership and permissionless technology.

MSBuild is not found

Apr 16, 2023 — 1 min read

When Rider does not find MSBuild on Apple Silicon, it might need the latest version of the dotnet SDK. It’s not bundled with the Mono SDK cask.

To install via Homebrew:

brew install dotnet@7

and set this in your .bashrc / .zshrc

export DOTNET_ROOT="/opt/homebrew/opt/dotnet/libexec"
To Homepage