How to deploy your c# solution into single .exe file [duplicate]
Possible Duplicates:
Compile to stand alone exe for C# app in Visual Studio 201开发者_运维问答0 .Net whole application as a single .exe file ?
Heey Guys,
so i have a C# Solution that connects to Database and i want to deploy this solution into a single .Exe file. like NotePad , in a way that makes me able to send the exe file and then double click it and it starts running ..
how can i do something like that ??
I think ILMerge is what you want. However, reflection can ruin its day.
Yeah, ILMerge is great if you aren't using reflection. It merges a set of assemblies into a given primary assembly.
I use DeepSea obfuscator (commercial product) to obfuscate and merge the output assemblies from several projects into a single assembly (.exe or .dll).
精彩评论