private MixinStandardServiceLocator(SharedInfoProfile profile, PlatformConfig config)
 {
     Debug.Log("[Vial] This assembly has been compiled with Vial mixins");
     if (profile.AutoBugReportingEnabled)
     {
         Debug.Log("[Vial] Automatic bug reporting is currently enabled, setting to disabled");
         profile.AutoBugReportingEnabled = false;
     }
     Base(profile, config);
 }
 private void Base(SharedInfoProfile profile, PlatformConfig config) => throw new NotImplementedException();