• 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.
  • Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
  • Our weekly protagonist poll is now up! Vote for your favorite Conquest protagonist in the poll by clicking here.
  • 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