Hi Alfie Chatfield,
Thank you for reaching out to Microsoft Q & A forum.
Although you have .NET 8.0.1 installed, some applications require the specific version they were built with in this case, .NET 7.0.0.
To install .NET 7.0.0 on your Steam Deck:
1.Switch to Desktop Mode.
2.Open Konsole and run the following commands:
wget https://dot.net/v1/dotnet-install.sh
chmod +x dotnet-install.sh
./dotnet-install.sh --version 7.0.0
3.Add the following lines to your .bashrc or terminal profile:
export DOTNET_ROOT=$HOME/.dotnet
export PATH=$PATH:$HOME/.dotnet
4.Apply changes with source ~/.bashrc, then verify with:
dotnet --list-runtimes
If you have found the answer provided to be helpful, please click on the "Accept answer/Upvote" button so that it is useful for other members in the Microsoft Q&A community.