File tree 4 files changed +9
-9
lines changed
4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
- [ ![ NuGet] ( https://img.shields.io/badge/nuget-v0.4.2 -green.svg )] ( https://www.nuget.org/packages/Snowflake.Client/ )
1
+ [ ![ NuGet] ( https://img.shields.io/badge/nuget-v0.4.3 -green.svg )] ( https://www.nuget.org/packages/Snowflake.Client/ )
2
2
[ ![ ] ( https://img.shields.io/nuget/dt/Snowflake.Client.svg )] ( https://www.nuget.org/packages/Snowflake.Client/ )
3
3
[ ![ Targets] ( https://img.shields.io/badge/.NET%20Standard-2.0-green.svg )] ( https://docs.microsoft.com/en-us/dotnet/standard/net-standard )
4
4
[ ![ License] ( https://img.shields.io/badge/License-Apache%202.0-green.svg )] ( https://opensource.org/licenses/Apache-2.0 )
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ static ChunksDownloader()
24
24
{
25
25
var httpClientHandler = new HttpClientHandler
26
26
{
27
- AutomaticDecompression = DecompressionMethods . GZip | DecompressionMethods . Deflate ,
27
+ AutomaticDecompression = DecompressionMethods . GZip | DecompressionMethods . Deflate
28
28
} ;
29
29
30
30
Client = new HttpClient ( httpClientHandler )
Original file line number Diff line number Diff line change @@ -4,17 +4,17 @@ namespace Snowflake.Client.Model
4
4
{
5
5
public class ClientAppInfo
6
6
{
7
- public string DriverName { get ; private set ; }
8
- public string DriverVersion { get ; private set ; }
9
- public LoginRequestClientEnv Environment { get ; private set ; }
7
+ public string DriverName { get ; }
8
+ public string DriverVersion { get ; }
9
+ public LoginRequestClientEnv Environment { get ; }
10
10
11
11
public ClientAppInfo ( )
12
12
{
13
13
Environment = new LoginRequestClientEnv ( )
14
14
{
15
15
Application = System . Diagnostics . Process . GetCurrentProcess ( ) . ProcessName ,
16
16
OSVersion = $ "({ System . Environment . OSVersion . VersionString } )",
17
- #if NET46
17
+ #if NETFRAMEWORK
18
18
NETRuntime = "NETFramework" ,
19
19
NETVersion = "4.6" ,
20
20
#else
Original file line number Diff line number Diff line change 3
3
<PropertyGroup >
4
4
<TargetFrameworks >netstandard2.0;net6.0</TargetFrameworks >
5
5
<GeneratePackageOnBuild >true</GeneratePackageOnBuild >
6
- <Version >0.4.2 </Version >
6
+ <Version >0.4.3 </Version >
7
7
<Authors >fixer_m</Authors >
8
8
<Description >.NET client for Snowflake DB REST API.
9
9
Provides straightforward and efficient way to execute SQL queries in Snowflake and automatically map response to your models.</Description >
@@ -12,8 +12,8 @@ Provides straightforward and efficient way to execute SQL queries in Snowflake a
12
12
<PackageLicenseExpression >Apache-2.0</PackageLicenseExpression >
13
13
<RepositoryUrl >https://github.com/fixer-m/snowflake-db-net-client/</RepositoryUrl >
14
14
<PackageTags >snowflake;client;api;wrapper;snowflakedb;rest;restapi</PackageTags >
15
- <AssemblyVersion >0.4.2 .0</AssemblyVersion >
16
- <FileVersion >0.4.2 .0</FileVersion >
15
+ <AssemblyVersion >0.4.3 .0</AssemblyVersion >
16
+ <FileVersion >0.4.3 .0</FileVersion >
17
17
<PackageIcon >snowflake_icon.png</PackageIcon >
18
18
</PropertyGroup >
19
19
You can’t perform that action at this time.
0 commit comments