We're developing a website using Asp.Net Core 2.2 we have this block in our configuration to bypass the licensing tasks in development tests:
if (!env.IsDevelopment())
{
//Do license checking stuff...
}
I was wondering is it possible for the customer to somehow make my application run in development mode and try to skip license checking? If yes, what is the best way to prevent it? Thanks.