private bool IsScript(RegistryPackageFileContext ctx)
        {
            var extension = Path.GetExtension(ctx.File.Filename);

            return(extension == ".cs" || extension == ".cslist");
        }
 public RegistrySavesMatch(RegistryPackageFileContext remote, LocalScriptFile local)
 {
     Remote = remote;
     Local  = local;
 }