mirror of
https://github.com/xoofx/markdig.git
synced 2026-02-08 13:54:54 +00:00
Crash when net35 dll used within SSRS, when certain markup is used #348
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @amonroejj on GitHub (Feb 6, 2020).
Using 0.18.1.0 that I compiled locally in Visual Studio 2019 Professional.
Within an SSRS report:
If I feed
# Contact = Dummy(heading) to Markdig, I correctly get<h1>Contact = Dummy</h1>(and if I enable HTML for this placeholder in the report, it correctly displays as a header.)If I feed
* Contact = Dummy(bullet list) to Markdig, I get this exception:The problem is repeatable and happens on both our prod SSRS server and my local SSRS server.
When I test this same thing under a standalone VB.NET console app compiled to .NET Framework 3.5 and referencing the same net35 markdig.dll, I do not get any crashes.