davidhcoe commented on code in PR #3022:
URL: https://github.com/apache/arrow-adbc/pull/3022#discussion_r2187359477
##########
csharp/src/Drivers/BigQuery/BigQueryUtils.cs:
##########
@@ -33,5 +34,11 @@ public static bool TokenRequiresUpdate(Exception ex)
return result;
}
+
+ internal static string GetAssemblyName(Type type) =>
type.Assembly.GetName().Name!;
+
+ internal static string GetAssemblyVersion(Type type) =>
FileVersionInfo.GetVersionInfo(type.Assembly.Location).ProductVersion ??
string.Empty;
+
+ internal static bool TracingToFile() { return false; }
Review Comment:
That is a method because I thought I would have to put some logic in there
to determine whether a file listener was active, but I could be
misunderstanding how that part will work.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]