C#C
C#2y ago
Mek

✅ Creating an installer for application

You know how when you download an application off the internet, click to open the application and it goes through an installation screen where you do some setup questions (sometimes) and it does a loading bar showing the installation progress? How do I create that? The only thing I can think of is to have like a setup.json file with a boolean key,value pair. Set it to False by default, then when the application runs for the first time, it's doing the installation, sets the boolean value to true in the setup.json file so that when the user runs the application again, it does something different.
Was this page helpful?