|
|
1.1 ! root 1: namespace CleanFlashInstaller { ! 2: public class InstallEntry { ! 3: public string InstallText { get; } ! 4: public InstallFlags RequiredFlags { get; } ! 5: public string TargetDirectory { get; } ! 6: public string RegistryInstructions { get; } ! 7: ! 8: public InstallEntry(string installText, int requiredFlags, string targetDirectory, string registryInstructions) { ! 9: InstallText = installText; ! 10: RequiredFlags = new InstallFlags(requiredFlags); ! 11: TargetDirectory = targetDirectory; ! 12: RegistryInstructions = registryInstructions; ! 13: } ! 14: ! 15: public InstallEntry(string installText, int requiredFlags, string targetDirectory) : this(installText, requiredFlags, targetDirectory, null) { } ! 16: } ! 17: }
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.