https://bugs.winehq.org/show_bug.cgi?id=45962
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |focht@gmx.net Summary|FileMaker Pro 16 crashes on |FileMaker Pro 16 (.NET 4.6 |startup |app) crashes on startup Keywords| |dotnet
--- Comment #5 from Anastasius Focht focht@gmx.net --- Hello Larry,
--- snip --- $ wine "/home/larry/winedotnet461/drive_c/Program Files/FileMaker/FileMaker Pro 16/FileMaker Pro.exe" ... Unhandled Exception: System.IO.FileNotFoundException: Could not load file or assembly 'PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. --- snip ---
two things:
1)
If you install the app into an own WINEPREFIX which is not the default (~/.wine) you have to set WINEPREFIX variable to the prefix location before starting the app(s) from console.
--- snip --- $ export WINEPREFIX=/home/larry/winedotnet461 --- snip ---
2)
Always start the app from their install path. Many Windows apps rely on correct working directory setting.
--- snip --- $ cd <install path> $ wine ./foobar.exe --- snip ---
Regards