Alex
Alex

Reputation: 2609

Using Dotfuscator with .net core

Googling showed me no results on how to use Dotfuscator to obfuscate .DLLs targeting .NET Core 1.0. Should I just use ordinary Dotfuscator version and no special settings for that? Will the resulting obfuscated .dll still be fully compatible with .NET Core?

Upvotes: 2

Views: 2373

Answers (1)

Vitaliy Fedorchenko
Vitaliy Fedorchenko

Reputation: 9225

Since Dotfuscator is a commercial product, you can contact their support and ask about .NET Core / netstandard compatibility. If dotfuscator was able to obfuscate old PCL assemblies, it should work for .NET Core as well.

Recently I've tested open-source Obfuscar with my assembly that targets netstandard1.5, and I was able to use the dll in .NET Core project after obfuscation.

Upvotes: 2

Related Questions