Include DLL in executable

0

I wanted to know if it was possible to include the dlls in the executable in such a way that I was included in a single executable file in Visual Studio 2012 with C #

    
asked by Alejandro Ricotti 30.08.2016 в 16:46
source

2 answers

1

In a standard way you can not achieve what you are saying

If you could analyze if maybe creating a aplicacion portable that allows you to encapsulate your application next to the .net framework, although it is not something simple to achieve

I could analyze the use of the tools

VMware ThinApp

ThinApp

    
answered by 30.08.2016 / 17:11
source
0

The framework itself can not be included, but you can use your third-party DLL's and dll's using ILMerge

here is an example

    
answered by 30.08.2016 в 17:57