These two lines of code compile fine when I use a .NetFramework type console build:
My.Application.CommandLineArgs
My.Computer.FileSystem.GetFiles(strFolder)
But trying to compile the same code with the console application using .NET6 / Window it has two build errors:
'Application' is not a member of 'GoogleAuthAndSync2.My'.
Similar for the other line.
I don't understand why this would not work?