Skip to content

Commit 5b5ea56

Browse files
committed
Version 5.0.0 (.NET 4.7.2)
N.B. This Version is NOT backward compatible [ENHANCEMENT] Library upgrade to support interfaces [ENHANCEMENT] New attribute "AllowAPICall" implemented: >> Add the attribute to every public API methods that must be accessible from the Web. [ENHANCEMENT] New overridden method IADO.ExecuteBulkCopy with following signature: >> public void ExecuteBulkCopy(string destinationTableName, List<KeyValuePair<string, string>> mappings, DataTable dt, bool useCurrentTransaction = false, int copyOptions = 0) [ENHANCEMENT] Google Firebase Authentication integrated and library dependencies updated
1 parent e5adb87 commit 5b5ea56

File tree

5,048 files changed

+5298420
-186189
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

5,048 files changed

+5298420
-186189
lines changed

rls/API.Library.dll

5.5 KB
Binary file not shown.

rls/API.Library.dll.config

Lines changed: 40 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,6 @@
1313
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
1414
</startup>
1515

16-
<runtime>
17-
<gcAllowVeryLargeObjects enabled="true" />
18-
</runtime>
19-
2016
<AppSettings>
2117
<!--
2218
**********************************************************************
@@ -139,6 +135,14 @@
139135
<!-- Performance - Choose the Database connection string where to store the records -->
140136
<add key="API_PERFORMANCE_DATABASE" value="defaultConnection" />
141137

138+
<!--
139+
**********************************************************************
140+
API - Firebase Authentication
141+
**********************************************************************
142+
-->
143+
<add key="API_FIREBASE_ENABLED" value="FALSE" />
144+
<add key="API_FIREBASE_APP_NAME" value="domain.extension" />
145+
142146
</AppSettings>
143147

144148
<!--
@@ -173,20 +177,20 @@
173177
<log4net>
174178
<root>
175179
<!-- Set the level to ERROR for Live/UAT and ALL for TD-->
176-
<level value="ALL"/>
180+
<level value="ALL" />
177181

178-
<appender-ref ref="FileAppender"/>
179-
<appender-ref ref="SmtpAppender"/>
180-
<appender-ref ref="AdoNetAppender"/>
182+
<appender-ref ref="FileAppender" />
183+
<appender-ref ref="SmtpAppender" />
184+
<appender-ref ref="AdoNetAppender" />
181185
</root>
182186

183187
<appender name="FileAppender" type="log4net.Appender.FileAppender">
184188
<!-- Set threshold to ERROR for Live/UAT and ALL for TD-->
185-
<threshold value="ALL"/>
186-
<file type="log4net.Util.PatternString" value="Logs\Log4Net.[%processid].log"/>
187-
<appendToFile value="true"/>
189+
<threshold value="ALL" />
190+
<file type="log4net.Util.PatternString" value="Logs\Log4Net.[%processid].log" />
191+
<appendToFile value="true" />
188192
<layout type="log4net.Layout.PatternLayout">
189-
<conversionPattern value="%date [%thread] %level %class.%method:%line - %message%newline"/>
193+
<conversionPattern value="%date [%thread] %level %class.%method:%line - %message%newline" />
190194
</layout>
191195
<lockingModel type="log4net.Appender.FileAppender+InterProcessLock" />
192196
</appender>
@@ -208,7 +212,7 @@
208212
<bufferSize value="1" />
209213
<lossy value="true" />
210214
<layout type="log4net.Layout.PatternLayout">
211-
<conversionPattern value="%date [%thread] %level %class.%method:%line - %message%newline"/>
215+
<conversionPattern value="%date [%thread] %level %class.%method:%line - %message%newline" />
212216
</layout>
213217
</appender>
214218

@@ -281,4 +285,27 @@
281285
</appender>
282286
</log4net>
283287

288+
<runtime>
289+
<!-- Firebase dependencies -->
290+
<gcAllowVeryLargeObjects enabled="true" />
291+
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
292+
<dependentAssembly>
293+
<assemblyIdentity name="Google.Apis.Auth" publicKeyToken="4b01fa6e34db77ab" culture="neutral" />
294+
<bindingRedirect oldVersion="0.0.0.0-1.49.0.0" newVersion="1.49.0.0" />
295+
</dependentAssembly>
296+
<dependentAssembly>
297+
<assemblyIdentity name="Google.Apis" publicKeyToken="4b01fa6e34db77ab" culture="neutral" />
298+
<bindingRedirect oldVersion="0.0.0.0-1.49.0.0" newVersion="1.49.0.0" />
299+
</dependentAssembly>
300+
<dependentAssembly>
301+
<assemblyIdentity name="Google.Apis.Core" publicKeyToken="4b01fa6e34db77ab" culture="neutral" />
302+
<bindingRedirect oldVersion="0.0.0.0-1.49.0.0" newVersion="1.49.0.0" />
303+
</dependentAssembly>
304+
<dependentAssembly>
305+
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
306+
<bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0" />
307+
</dependentAssembly>
308+
</assemblyBinding>
309+
</runtime>
310+
284311
</configuration>

rls/API.Library.pdb

6 KB
Binary file not shown.

rls/Firebase.Auth.dll

53.5 KB
Binary file not shown.

rls/FirebaseAdmin.dll

268 KB
Binary file not shown.

rls/FirebaseAdmin.xml

Lines changed: 5148 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rls/Google.Api.Gax.Rest.dll

24.5 KB
Binary file not shown.

rls/Google.Api.Gax.Rest.pdb

5.38 KB
Binary file not shown.

rls/Google.Api.Gax.Rest.xml

Lines changed: 291 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rls/Google.Api.Gax.dll

72.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)