I'm using Costura.Fody to embed my whole application into one .exe file. But for some reason, the .pdb is not getting embedded:
On the project's README it denotes that there is a parameter called IncludeDebugSymbols
to be specified in the FodyWeavers.xml that is true
by default. Despite this, I have tried explicitly setting it to true
:
<?xml version="1.0" encoding="utf-8"?>
<Weavers xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="FodyWeavers.xsd">
<Costura IncludeDebugSymbols='true' />
</Weavers>
But no luck. Any ideas?