wpcoder
wpcoder

Reputation: 1054

deploy vb.net winform native binaries

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.

Upvotes: 0

Views: 53

Answers (1)

esnezz
esnezz

Reputation: 669

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

Upvotes: 1

Related Questions