Version Couchbase-Net-Client 3.0.0 can not bootstap with couchbase server 6.5.1

Hello again me,

If i want to use my own serializer (NamingStrategy - because we have document save with this naming and then query language doesnt work). So i use own serialzer. Do I miss something?

var jsonSettings = new JsonSerializerSettings()
  {
    NullValueHandling = NullValueHandling.Ignore,
    DefaultValueHandling = DefaultValueHandling.IgnoreAndPopulate,
    DateTimeZoneHandling = DateTimeZoneHandling.Utc,
    ContractResolver = new DefaultContractResolver
    {
      NamingStrategy = new DefaultNamingStrategy()
    }
  };
clusterOptions.Serializer = new DefaultSerializer(jsonSettings, jsonSettings);

With this bootstrap failed.