https://bugs.winehq.org/show_bug.cgi?id=45997
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Summary|Attempting to run dotnet |.NET 4.0 app crashes with |4.0 app using the dotnet40 |System.NotImplementedExcept |winetrick, receiving Not |ion at |implemented for |system.drawing.pen.ScaleTra |system.drawing.pen.ScaleTra |nsform |nsform | Keywords|integration | CC| |focht@gmx.net Ever confirmed|0 |1 Severity|blocker |normal
--- Comment #2 from Anastasius Focht focht@gmx.net --- Hello John,
is the .NET app publicly available for download? If yes, please provide a link. Also please use a more recent Wine version when reporting bugs, even if the function is still not implemented. You would need to upgrade anyway after Wine gets fixed.
Wine source:
https://source.winehq.org/git/wine.git/blob/HEAD:/dlls/gdiplus/pen.c#l471
--- snip --- 471 GpStatus WINGDIPAPI GdipScalePenTransform(GpPen *pen, REAL sx, REAL sy, GpMatrixOrder order) 472 { 473 static int calls; 474 475 TRACE("(%p,%0.2f,%0.2f,%u)\n", pen, sx, sy, order); 476 477 if(!pen) 478 return InvalidParameter; 479 480 if(!(calls++)) 481 FIXME("(%p, %.2f, %.2f, %d) stub\n", pen, sx, sy, order); 482 483 return NotImplemented; 484 } --- snip ---
$ wine --version wine-3.18
Regards