質問

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