开发者

How to create a single executable file in Visual Studio 2008?

开发者 https://www.devze.com 2022-12-17 17:09 出处:网络
I\'ve created a Windows Forms Application in Visual Studio 2008, .NET 3.5. Now I want to finalize my project, i.e. to create a single .exe file which I can give to someone and he will be able to run i

I've created a Windows Forms Application in Visual Studio 2008, .NET 3.5. Now I want to finalize my project, i.e. to create a single .exe file which I can give to someone and he will be able to run it on his computer.

In my project files I found bin/Debug directory where I see a .exe file. Can I just use this file as is, or I am missing some important finalizing开发者_JAVA技巧 procedure ?

Thanks !


You can just take the EXE as long as it has no dependencies. If there are any dll files in there, you need to include them (or use the ILMerge command line utility to combine them). You can, however, ignore any generated pdb or xml files.

As a side note, you should be compiling in release if you plan on deploying your project (the output will be in bin/Release)


You are not clear in you question. If your solutions output is just a single exe file, then Yes, you can give away the exe file in bin\debug.

But instead of bin\debug\ exe you must distribute the bin\Release\ exe which is meant for release purpose.


To make the ILMerge easier, use the GUI tool from codeplex at http://ilmergegui.codeplex.com/

If this is a commercial application, several commercial obfuscators allow creating a single exe.


In SetiSeeker response the link http://ilmergegui.codeplex.com/ is not reachable

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号