Skip to content
Snippets Groups Projects
ApplicationInfo_Local.cs-example 388 B
#pragma warning disable 436
namespace GitHub.Unity
{
    static partial class ApplicationInfo
    {
        private const string myClientId = "YOUR CLIENT ID HERE";
        private const string myClientSecret = "YOUR CLIENT SECRET HERE";

        static partial void SetClientData()
        {
            ClientId = myClientId;
            ClientSecret = myClientSecret;
        }
    }
}