feat: implement analyzer and code fixer for identifying and fixing when a sync flag is not propagated correctly.
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
using System.Threading.Tasks;
|
||||
|
||||
public class BusinessLogic
|
||||
{
|
||||
private async Task<string> GetFrobCoreAsync(bool sync)
|
||||
{
|
||||
await Task.Delay(100);
|
||||
return "done";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user