Does anyone get to know how to start with .NET Reactor?

I look through the manual and online support and also the Google Group, but none get me started. The software asked me to upload an assembly files (.exe or .dll) to run the protection. But all I have is a WPF C# solution project developed in Visual Studio with a bunch of .cs and .xaml files with some images and resources, and a Visual Studio Installer .msi file.

What files am I supposed to protect (or obfuscate and more) and license? There is no option to protect my .msi or a certain .cs or .XAML file. If anyone can point me to some tutorial, it will be helpful because I cannot find any.

enter image description here

有帮助吗?

解决方案

You need to obfuscate the generated .exe and .dll files. Once you've run them through this tool, you'd build your .msi using the obfuscated assemblies, not the original ones (from Visual Studio's output).

其他提示

You can use the .NET Reactor VS Add-in in to automatically obfuscate the assemblies. This way you don't need to manually replace the compiled file with the protected one.

The solution is described here: Solution

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top