Deployments and Version
To specify a version manually, add the current version to AddTogglyWeb
services.AddTogglyWeb(options =>
{
options.AppKey = Configuration["Toggly:AppKey"]!;
options.Environment = Configuration["Toggly:Environment"]!;
options.AppVersion = "7.10.1";
});
If not specified, we default to Assembly.GetEntryAssembly()?.GetName().Version
To disable version tracking, set AppVersion to String.Empty
Last updated
Was this helpful?