namespace StardewModdingApi.Installer { /// The entry point for SMAPI's install and uninstall console app. internal class Program { /********* ** Public methods *********/ /// Run the install or uninstall script. /// The command line arguments. public static void Main(string[] args) { var installer = new InteractiveInstaller(); installer.Run(args); } } }