File:  [cleanflash] / cleanflash / CleanFlashInstaller / InstallEntry.cs
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs
Wed Oct 13 09:04:22 2021 UTC (4 years, 7 months ago) by root
Branches: UNKNWN, MAIN
CVS tags: v3400192, HEAD
cleanflash 34.0.0.192

namespace CleanFlashInstaller {
    public class InstallEntry {
        public string InstallText { get; }
        public InstallFlags RequiredFlags { get; }
        public string TargetDirectory { get; }
        public string RegistryInstructions { get; }

        public InstallEntry(string installText, int requiredFlags, string targetDirectory, string registryInstructions) {
            InstallText = installText;
            RequiredFlags = new InstallFlags(requiredFlags);
            TargetDirectory = targetDirectory;
            RegistryInstructions = registryInstructions;
        }

        public InstallEntry(string installText, int requiredFlags, string targetDirectory) : this(installText, requiredFlags, targetDirectory, null) { }
    }
}

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.