pauleve/docker-mtgo

No longer starts, requires .NET 4.7.2

dorianbrown opened this issue · 4 comments

When trying to run docker-mtgo, as of this morning I get a pop-up with the following message

Unable to install or run this application. This application requires Version 4.7.2 Client or 
other compatible .NET Framework.

Please contact your system administrator.

It seems like a tweak to the winetweaks file is needed to get this working again.

Trying to build an image with

&& su - $WINE_USER -c 'taskset -c 0 winetricks -f -q dotnet46' \
changed to:

&& su - $WINE_USER -c 'taskset -c 0 winetricks -f -q dotnet472' \

Testing this change now.

Thanks for the report. The new image now ships .NET 4.7.2 (#144)

./run-mtgo --update

might be enough, although running once ./run-mtgo --update --reset might help.

New image resolves the issue, thanks.

Glad this was easily resolved, I'll close this issue.