From 5e690bde42070ee7dbb36b7dd714e5fb2e3ec436 Mon Sep 17 00:00:00 2001 From: owen Date: Thu, 4 Jan 2024 22:52:29 -0700 Subject: [PATCH] Added strong name for ClickHouse.Client. Note: did not include netcoreapp31 and net5 as many warnings were generated perhaps due to some configuration on my machine --- .../ClickHouse.Client.Tests.csproj | 3 +++ ClickHouse.Client.snk | Bin 0 -> 596 bytes ClickHouse.Client/ClickHouse.Client.csproj | 18 ++++++++++++++---- ClickHouse.Client/Types/TypeConverter.cs | 3 --- README.md | 2 ++ 5 files changed, 19 insertions(+), 7 deletions(-) create mode 100644 ClickHouse.Client.snk diff --git a/ClickHouse.Client.Tests/ClickHouse.Client.Tests.csproj b/ClickHouse.Client.Tests/ClickHouse.Client.Tests.csproj index 10c78cdc..a4e2cfbf 100644 --- a/ClickHouse.Client.Tests/ClickHouse.Client.Tests.csproj +++ b/ClickHouse.Client.Tests/ClickHouse.Client.Tests.csproj @@ -4,6 +4,9 @@ net6.0 false latest + + true + ../ClickHouse.Client.snk diff --git a/ClickHouse.Client.snk b/ClickHouse.Client.snk new file mode 100644 index 0000000000000000000000000000000000000000..de560c62543704772bc67431007033c0224456b5 GIT binary patch literal 596 zcmV-a0;~N80ssI2Bme+XQ$aES1ONa50097G2scEHKJn@2 zeQ5~puKV$GrY`8jvu1&|XBnZDOsfA7Ruvvj;ONihUY>`OxqDoTiH_%+je0h4 z7qR64P%A-RlZXM+>*mtD|IS;)6snWG1>IVx!fQo8b|HrzyY|c#RJe>pCUMUFmiwN^ z##nQ`T{UgeRG|w$W8xr+@c8KGn~37s?>+;f?n&0>R2y-Ww89B-&0?cvVbBgL_xeFa zG+63U4-n`*bn()AUy!0vFr&5>R3o&goonyR&P`ndWB2WjN22x^`HQW#ai~42YJ1p5}47t(TJqGWe;pD&pG2@xH|?$?rIA z>}02l46Pxi=wIBGe$-1-rW>1wi3?BEMzOU*TdFVJ_kvoT@b8&P-ueoo=Jqw z@C|-6?|yG48M(p{1IBA~Ah_u8WXqYxV)z66TvGrqna>6#&FgUA$Kuj==~qizH`&!b zhy)Mkc6vJrIe`*YuRY#}cmnUJeRY%>VUmQy7nTjv5{FXsh_Dm^o2;uo-0D#w{kZzj zgG2t`?yhmrUx7&I3yFK9U)iw)gWdH!@_OjjYtgJG8GLQxEX-o(n)@g6P> ies;uVt|e$8{4Xr#Tl9tob^2vNyez{_yqQR{YGx>w;Vpdt literal 0 HcmV?d00001 diff --git a/ClickHouse.Client/ClickHouse.Client.csproj b/ClickHouse.Client/ClickHouse.Client.csproj index 58c3135c..c5cd1e48 100644 --- a/ClickHouse.Client/ClickHouse.Client.csproj +++ b/ClickHouse.Client/ClickHouse.Client.csproj @@ -1,11 +1,10 @@ - + - net462;net48;netstandard2.1;netcoreapp3.1;net5.0;net6.0 + net462;net48;netstandard2.1;net6.0 false true - https://github.com/DarkWanderer/ClickHouse.Client - https://github.com/DarkWanderer/ClickHouse.Client + https://github.com/osigurdson/ClickHouse.Client clickhouse, ado.net, client Oleg Kozlyuk Fast binary-over-HTTP ADO.NET provider for ClickHouse @@ -17,6 +16,11 @@ latest true Recommended + + 6.8.2 + true + ../ClickHouse.Client.snk + @@ -39,4 +43,10 @@ + + + <_Parameter1>$(AssemblyName).Tests, PublicKey=00240000048000009400000006020000002400005253413100040000010001009d5a5b1b859c0d137c299e675662b0ff520837448d3ef1e9e77d6908eeaefbf173a62ee8c4b36681b66719a1954d5f7363eb596e5356151e4ee0e8cfe65e9e8793b97b5c8b898ee79b8d7a367017b1e500502b415e938801d3ebe6d2bcffce5bc414aa93bd05dd5aa8c26b453f7621871ebbf6cc1554b88c442671cefd96fb9e + + + diff --git a/ClickHouse.Client/Types/TypeConverter.cs b/ClickHouse.Client/Types/TypeConverter.cs index c7a4b5f8..7c9120dc 100644 --- a/ClickHouse.Client/Types/TypeConverter.cs +++ b/ClickHouse.Client/Types/TypeConverter.cs @@ -1,12 +1,9 @@ using System; using System.Collections.Generic; using System.Linq; -using System.Runtime.CompilerServices; using ClickHouse.Client.Numerics; using ClickHouse.Client.Types.Grammar; -[assembly: InternalsVisibleTo("ClickHouse.Client.Tests")] // assembly-level tag to expose below classes to tests - namespace ClickHouse.Client.Types; internal static class TypeConverter diff --git a/README.md b/README.md index 97f12f16..6b97056c 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # ClickHouse.Client +Clone of https://github.com/ClickHouse/ClickHouse with strong name added. Removed netcoreapp31 and net5 removed as build targets as so many warnings were associated with this. + ADO.NET client for [ClickHouse](https://github.com/ClickHouse/ClickHouse), ultra-fast 'big data' relational database [![Latest version](https://img.shields.io/nuget/v/ClickHouse.Client)](https://www.nuget.org/packages/ClickHouse.Client/)