0

Referencing this answer, I quote:

we do not do any obfuscation at all. Instead you might want to check the new possibilities to compile code to native binaries (.Net Native): https://msdn.microsoft.com/en-us/library/dn584397%28v=vs.110%29.aspx

Maybe that new feature already offers enough options.

And my question is, is it possible to deploy native binary in end user OS and how to do so if the answer is yes?

Its great if there is such a solution to protect code other than obfuscation.

wpcoder
  • 1,016
  • 11
  • 17

1 Answers1

1

Currently .Net Native is only available for Universal Windows Platform (UWP), so it cannot be used for projects that target Winform, Wpf...

https://learn.microsoft.com/en-us/dotnet/framework/net-native/getting-started-with-net-native

esnezz
  • 619
  • 1
  • 7
  • 19
  • ngen.exe can produce native build for winform; but I don't know how to deploy and run at end machine – wpcoder Aug 21 '17 at 09:50
  • 1
    There are third party installers such as Advanced Installer that can ngen assemlies on end user machine. – esnezz Aug 21 '17 at 10:27