Created library as digitally signed as its required to be installed in the GAC for Sql Server Integration Services

This commit is contained in:
Andy Fenna 2016-09-29 15:18:05 +01:00
Родитель 2b43ba1279
Коммит f872d77639
6 изменённых файлов: 12 добавлений и 9 удалений

Двоичные данные
src/KafkaNET.Library/Dynamic.snk Normal file

Двоичный файл не отображается.

Просмотреть файл

@ -101,11 +101,10 @@
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>false</SignAssembly>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>
</AssemblyOriginatorKeyFile>
<AssemblyOriginatorKeyFile>Dynamic.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DebugSymbols>true</DebugSymbols>
@ -367,6 +366,7 @@
<Compile Include="ZooKeeperAwareKafkaClientBase.cs" />
</ItemGroup>
<ItemGroup>
<None Include="Dynamic.snk" />
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />

Просмотреть файл

@ -44,8 +44,11 @@ using System.Runtime.InteropServices;
// Build Number
// Revision
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: InternalsVisibleTo("Kafka.Client.Tests")]
// [assembly: CLSCompliant(true)]
[assembly: InternalsVisibleTo("Kafka.Client.Tests,PublicKey=" +
"0024000004800000940000000602000000240000525341310004000001000100d78f26db782675" +
"d869d8d069aa2bd226a42af16b5bed2a8aea23feefe75053a815fbe10469f6c65e4a760dd329fc" +
"7e806c69bfbd8a2c134f6938311421ab24dfac111da9fe9c89772220d5b88cf88093b7ecc09e4e" +
"db75cb1ac3515e3a8e56bc1bf3eafedd2796b4cac4d942c0260f68f52a55a109e5470cf68f604e" +
"7a5d2799")]

Просмотреть файл

@ -77,7 +77,7 @@ namespace Kafka.Client.Utils
return hash;
}
internal static uint ComputeCrcUint32(byte[] bytes, int offset, int count)
public static uint ComputeCrcUint32(byte[] bytes, int offset, int count)
{
var hasher = new Crc32Hasher();
return ~CalculateHash(InitializeTable(DefaultPolynomial), DefaultSeed, bytes, offset, count);

Двоичные данные
src/KafkaNET.Library/public.pk Normal file

Двоичный файл не отображается.

Просмотреть файл

@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.24720.0
VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KafkaNETLibraryConsole", "KafkaNETLibraryConsole\KafkaNETLibraryConsole.csproj", "{14A62688-3146-49D5-8774-D6E178D53E16}"
EndProject