Ejemplo n.º 1
0
        public static void Main(string[] args)
        {
            string filepath = Filename.GetAbsolutePath(args[0]);

            ExternalManager manager = new ExternalManager();

            manager.LoadCurrentTypes(filepath);
            manager.ValidateFiles(filepath);
        }
Ejemplo n.º 2
0
 public override bool TryGetLocalPath(string path, out string local_path)
 {
     local_path = Filename.GetAbsolutePath(path);
     return(true);
 }