예제 #1
0
 public void GpgIsInstalled()
 {
     string folder = new GpgPath().GetExeFolder();
     string fullPath = Path.Combine(folder, "gpg.exe");
     Console.Out.WriteLine(folder);
     Assert.IsTrue(File.Exists(fullPath));
 }
예제 #2
0
        public GnuPgpProcessor()
        {
            var path = new GpgPath();

            _gpg = new GnuPG(path.GetHomeFolderPath(), path.GetExeFolder());
        }
예제 #3
0
 public GnuPgpProcessor()
 {
     var path = new GpgPath();
     _gpg = new GnuPG(path.GetHomeFolderPath(), path.GetExeFolder());
 }