http://bugs.winehq.org/show_bug.cgi?id=30845
--- Comment #23 from Sylvain Petreolle spetreolle@yahoo.fr 2012-06-28 15:00:37 CDT --- (In reply to comment #10)
Created attachment 40487 [details] patch
Here's an improved patch that makes the following recipe work:
- create fresh prefix
- wine uninstaller --remove '{E45D8920-A758-4088-B6C6-31DBB276992E}'
- set windows version to win2k
- WINEDLLOVERRIDES=mscoree,fusion=n wine dotnetfx.exe
Thanks, I can confirm your recipe works, and dotnet programs are usable after that. I'm using git HEAD.
I used the following : #!/bin/bash set -x export WINEPREFIX=/c/wineDotnet2 export WINE=/sources/wine-git/wine export WINETRICKS=/c/winetricks rm -rf $WINEPREFIX $WINE msiexec /i $HOME/wine-mono-0.0.4.msi $WINE uninstaller --remove '{E45D8920-A758-4088-B6C6-31DBB276992E}' sh $WINETRICKS win2k WINEDLLOVERRIDES=mscoree,fusion=n $WINE $HOME/.cache/winetricks/dotnet20/dotnetfx.exe