Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is Xamarin Embeded Assembly feature in Visual Studio enterprise?

From: https://www.visualstudio.com/en-us/products/compare-visual-studio-2015-products-vs.aspx

You can see that they offer "embeded assembly" as an extra feature for the enterprise edition of visual studio. What is that?

I can't seem to find a proper description of the feature and just googling "embeded assembly" returns the wiki for inline assembler and such (which I doubt is what is referred to here?).

like image 765
user2997154 Avatar asked Apr 27 '16 17:04

user2997154


1 Answers

This is same as Bundle Assemblies into Native Code which meens:

When this option is enabled, assemblies are bundled into a native shared library. This option keeps your code safe; it protects managed assemblies by embedding them in native binaries.

Source: Xamarin Forum. See also this SO answer for more details.

like image 168
Giorgi Avatar answered Nov 12 '22 11:11

Giorgi