Disable/Uninstall Agent
You can easily disable or uninstall the tCell agent from your .NET Core project.
- Navigate to your .NET Core project folder.
- In your code, locate
UseTcellAgent()
in the CreateWebHostBuilder method. For example:
Sample CreateWebHostBuilder
1public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>2WebHost.CreateDefaultBuilder(args)3.UseTcellAgent(env => env.IsProduction()) // Remove or comment out this line4.UseStartup<Startup>();
- Remove or comment out
UseTcellAgent()
.
Did this page help you?