Disable/Uninstall Agent

You can easily disable or uninstall the tCell agent from your .NET Core project.

  1. Navigate to your .NET Core project folder.
  2. In your code, locate UseTcellAgent() in the CreateWebHostBuilder method. For example:
Sample CreateWebHostBuilder
1
public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
2
WebHost.CreateDefaultBuilder(args)
3
.UseTcellAgent(env => env.IsProduction()) // Remove or comment out this line
4
.UseStartup<Startup>();
  1. Remove or comment out UseTcellAgent().