stand alone application c#
So i was wondering if anyone could tell me what would be the best way to go about taking what I've written out in c#(wpf) and turning it into a stand alone application? And if anyone had any links to tutorials or could 开发者_C百科 explain to me how to do so. Thank you for the assistance.
Let me rephrase. I would like to have my program so that it can run on someone's computer without the need of a IDE, or have have an installation wizard or something along those lines to run the application.
I understand that you mean deployment of your application:
http://msdn.microsoft.com/en-us/library/aa969776.aspx
http://msdn.microsoft.com/en-us/library/2kt85ked.aspx
if that is what you looking for:)
I think what you are looking for is the executable of your project. It creates .exe file in side your project folder/bin/Debug/ (or release depend on your build mode). You can copy the .exe file to any machine which has installed the required .net framework and execute it.
If you want to create a nice setup for your program. Here is a good example
精彩评论