I'm working with the local version of XbyK. Advanced license type, using example:
using Microsoft.Extensions.Hosting;
// ...
WebApplicationBuilder builder = WebApplication.CreateBuilder(args);
// Configures the development environment as the content sync source
if (builder.Environment.IsDevelopment())
{
builder.Services.Configure<ContentSynchronizationOptions>(options =>
{
options.Source.Enabled = true;
options.Source.Secret = "147283795efb915cf7bcbe207678764e";
options.Source.TargetUrl = "https://productiondomain.com";
});
}
// Configures the production environment as the content sync target
if (builder.Environment.IsProduction())
{
builder.Services.Configure<ContentSynchronizationOptions>(options =>
{
options.Target.Enabled = true;
options.Target.Secret = "147283795efb915cf7bcbe207678764e";
});
}
configured staging. But the Sync this page or Sync with all subpages action is missing on the pages in website channel application