I think there is an human error in your code, this will solve #11
in Program.cs
Line 49:
decryptor.DecryptAll(decryptorOptions.InputPath, decryptorOptions.OutputPath);
should be
decryptor.DecryptAll(decryptorOptions.InputPath, decryptorOptions.OutputFolder);
I think there is an human error in your code, this will solve #11 in Program.cs
Line 49:
decryptor.DecryptAll(decryptorOptions.InputPath, decryptorOptions.OutputPath);
should bedecryptor.DecryptAll(decryptorOptions.InputPath, decryptorOptions.OutputFolder);
Just realised this was fixed with #10 facepalm