I have ASP.Net Core 1.0.1 project in which I need some strings hidden. The strings are private static fields. Obfuscar 2.2.3 is meant to hide strings by default, but it doesn't. I also tried this config with explicit values:
<Var name="HideStrings" value="true" />
<ForceStringHiding type="MyNamespase" />
But strings are still visible via dotPeek.
Maybe I misunderstood something? How can I get my strings hidden?