• Just a reminder that providing specifics on, sharing links to, or naming websites where ROMs can be accessed is against the rules. If your post has any of this information it will be removed.
  • Our friends from the Johto Times are hosting a favorite Pokémon poll - and we'd love for you to participate! Click here for information on how to vote for your favorites!
  • Akari, Red, Kris, May - which Pokémon protagonist is your favorite? Let us know by voting in our semifinal favorite protagonist poll!
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

Make your own ROM hacking tool (C#)

How can you make a .EXE of the program in c#? Or make it an installer?
 
How can you make a .EXE of the program in c#? Or make it an installer?
In visual studio you right click on the solution and click build. There should be an exe in the bin folder.
 
In visual studio you right click on the solution and click build. There should be an exe in the bin folder.

Just gonna tack on that if you debug your application (Pressing F5 to do a test run), it'll also be in your build folder as well.

So can you run it in other PCs as well?
 
Yes it does but in the tests I did, the release builds are generally faster than the debug builds.
So if you plan doing batch processing I wouldn't suggest picking the debug build in that case but usually they fully work.
 
Yes it does but in the tests I did, the release builds are generally faster than the debug builds.
So if you plan doing batch processing I wouldn't suggest picking the debug build in that case but usually they fully work.

How do make a release builds?
 
Richt click on the project in the upper right window that shows the project files and press "Create" (or build, I don't know the exact English translation). It will create a "Release" folder in your bin folder containing the .exe
 
Back
Top