File tree Expand file tree Collapse file tree 2 files changed +24
-1
lines changed
AzureFunctions.Extensions.GoogleBigQuery Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Original file line number Diff line number Diff line change 33 <PropertyGroup >
44 <TargetFramework >netstandard2.0</TargetFramework >
55 <GeneratePackageOnBuild >true</GeneratePackageOnBuild >
6- <Version >0.0.9.5 </Version >
6+ <Version >0.0.9.6 </Version >
77 <Authors >Damiao Castro</Authors >
88 <Company >fowet.com</Company >
99 <Description >Extension for Google BigQuery to work with Azure Functions and Azure Webjobs.
Original file line number Diff line number Diff line change 1+ using Microsoft . Azure . WebJobs ;
2+ using System ;
3+
4+ namespace AzureFunctions . Extensions . GoogleBigQuery {
5+ public static class GooglePubJobHostConfigurationExtensions {
6+
7+ /// <summary>
8+ /// Enables use of the Google BigQuery extensions for webjobs
9+ /// </summary>
10+ /// <param name="config">The <see cref="JobHostConfiguration"/> to configure.</param>
11+ public static void UseGoogleBigQuery ( this JobHostConfiguration config ) {
12+
13+ if ( config == null ) {
14+ throw new ArgumentNullException ( nameof ( config ) ) ;
15+ }
16+
17+ // Register our extension configuration provider
18+ config . RegisterExtensionConfigProvider ( new GoogleBigQueryExtensionConfig ( ) ) ;
19+
20+ }
21+
22+ }
23+ }
You can’t perform that action at this time.
0 commit comments