@@ -65,5 +65,78 @@ public sealed class PackagesConfigFilePackageSetting
65
65
66
66
[ XmlAttribute ( AttributeName = "force" ) ]
67
67
public bool Force { get ; set ; }
68
+
69
+ [ XmlAttribute ( AttributeName = "prerelease" ) ]
70
+ public bool Prerelease { get ; set ; }
71
+
72
+ [ XmlAttribute ( AttributeName = "overrideArguments" ) ]
73
+ public bool OverrideArguments { get ; set ; }
74
+
75
+ [ XmlAttribute ( AttributeName = "notSilent" ) ]
76
+ public bool NotSilent { get ; set ; }
77
+
78
+ [ XmlAttribute ( AttributeName = "allowDowngrade" ) ]
79
+ public bool AllowDowngrade { get ; set ; }
80
+
81
+ [ XmlAttribute ( AttributeName = "forceDependencies" ) ]
82
+ public bool ForceDependencies { get ; set ; }
83
+
84
+ [ XmlAttribute ( AttributeName = "skipAutomationScripts" ) ]
85
+ public bool SkipAutomationScripts { get ; set ; }
86
+
87
+ [ XmlAttribute ( AttributeName = "user" ) ]
88
+ public string User { get ; set ; }
89
+
90
+ [ XmlAttribute ( AttributeName = "password" ) ]
91
+ public string Password { get ; set ; }
92
+
93
+ [ XmlAttribute ( AttributeName = "cert" ) ]
94
+ public string Cert { get ; set ; }
95
+
96
+ [ XmlAttribute ( AttributeName = "certPassword" ) ]
97
+ public string CertPassword { get ; set ; }
98
+
99
+ [ XmlAttribute ( AttributeName = "ignoreChecksums" ) ]
100
+ public bool IgnoreChecksums { get ; set ; }
101
+
102
+ [ XmlAttribute ( AttributeName = "allowEmptyChecksums" ) ]
103
+ public bool AllowEmptyChecksums { get ; set ; }
104
+
105
+ [ XmlAttribute ( AttributeName = "allowEmptyChecksumsSecure" ) ]
106
+ public bool AllowEmptyChecksumsSecure { get ; set ; }
107
+
108
+ [ XmlAttribute ( AttributeName = "requireChecksums" ) ]
109
+ public bool RequireChecksums { get ; set ; }
110
+
111
+ [ XmlAttribute ( AttributeName = "downloadChecksum" ) ]
112
+ public string DownloadChecksum { get ; set ; }
113
+
114
+ [ XmlAttribute ( AttributeName = "downloadChecksum64" ) ]
115
+ public string DownloadChecksum64 { get ; set ; }
116
+
117
+ [ XmlAttribute ( AttributeName = "downloadChecksumType" ) ]
118
+ public string DownloadChecksumType { get ; set ; }
119
+
120
+ [ XmlAttribute ( AttributeName = "downloadChecksumType64" ) ]
121
+ public string DownloadChecksumType64 { get ; set ; }
122
+
123
+ [ XmlAttribute ( AttributeName = "ignorePackageExitCodes" ) ]
124
+ public bool IgnorePackageExitCodes { get ; set ; }
125
+
126
+ [ XmlAttribute ( AttributeName = "usePackageExitCodes" ) ]
127
+ public bool UsePackageExitCodes { get ; set ; }
128
+
129
+ [ XmlAttribute ( AttributeName = "stopOnFirstFailure" ) ]
130
+ public bool StopOnFirstFailure { get ; set ; }
131
+
132
+ [ XmlAttribute ( AttributeName = "exitWhenRebootDetected" ) ]
133
+ public bool ExitWhenRebootDetected { get ; set ; }
134
+
135
+ [ XmlAttribute ( AttributeName = "ignoreDetectedReboot" ) ]
136
+ public bool IgnoreDetectedReboot { get ; set ; }
137
+
138
+ [ XmlAttribute ( AttributeName = "disableRepositoryOptimizations" ) ]
139
+ public bool DisableRepositoryOptimizations { get ; set ; }
140
+
68
141
}
69
142
}
0 commit comments