Initial Setup
Please make your program and obtain the most recent files from the panel's resource center before configuring StackWorkShop Auth.
Initial Connection (Program.cs File):
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
namespace YourProgramName
{
class Program
{
static void Main(string[] args)
{
OnProgramStart.Initialize("APPNAME", "AID", "PROGRAMSECRET", "VERSION", "ActivateKey", "JWTToken", false, false);
}
}
}
Application Name (APPNAME)
AccountID (AID)
Application Secret (PROGRAMSECRET)
Application Version (Version)
Activate Key (ActivateKey)
JWT Token (JWTToken)
AntiDebug (bool true|false)
ProcessKiller (bool true|false)
Last updated