How can I Execute Obfuscar Before Fody.Costura Merge the Files Because Merged Files Are not obfuscated, using Fody.Costura compression or wihout it.
I've downloaded https://github.com/obfuscar/example.git project example for obfuscar, then I've installed Fody and Fody.Costura by nuget, But output example is not obfuscated if i check it with ILSpy project.
https://github.com/icsharpcode/ILSpy (ILSpy project to download compressed files and see dll code) https://github.com/G4224T/Fody-Costura-Decompress (To decompress fody costura files).
My obfuscar configuration is
<?xml version='1.0'?>
<Obfuscator>
<Var name="InPath" value="." />
<Var name="OutPath" value=".\Obfuscator_Output" />
<Var name="HidePrivateApi" value="true" />
<Var name="KeepPublicApi" value="false" />
<Var name="KeyFile" value=".\test.snk" />
<Module file="$(InPath)\BasicExampleExe.exe" />
<!--<Module file="$(InPath)\BasicExampleLibrary.dll" />-->
</Obfuscator>
And in fody costura I've tried with
<Costura DisableCompression="true" />
and
<Costura DisableCompression="false" />
I want any option for obfuscate and merge files using this projects because are free, Thanks all