Skip to content

Commit 01c3456

Browse files
committed
strongname
1 parent d641905 commit 01c3456

File tree

3 files changed

+53
-13
lines changed

3 files changed

+53
-13
lines changed

CSRedis.Tests/CSRedis.Tests.csproj

Lines changed: 48 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,15 @@
3434
<ErrorReport>prompt</ErrorReport>
3535
<WarningLevel>4</WarningLevel>
3636
</PropertyGroup>
37+
<PropertyGroup Condition=" '$(APPVEYOR)' == 'True' ">
38+
<SignAssembly>true</SignAssembly>
39+
<AssemblyOriginatorKeyFile>$(StrongNameKeyPath)</AssemblyOriginatorKeyFile>
40+
</PropertyGroup>
41+
<PropertyGroup Condition=" '$(APPVEYOR)' == '' ">
42+
<SignAssembly>true</SignAssembly>
43+
<DelaySign>true</DelaySign>
44+
<AssemblyOriginatorKeyFile>..\csredis.pub.snk</AssemblyOriginatorKeyFile>
45+
</PropertyGroup>
3746
<ItemGroup>
3847
<Reference Include="System" />
3948
<Reference Include="System.Configuration" />
@@ -51,20 +60,46 @@
5160
</Otherwise>
5261
</Choose>
5362
<ItemGroup>
54-
<Compile Include="ConnectionTests.cs" />
55-
<Compile Include="HashTests.cs" />
56-
<Compile Include="HyperLogLogTests.cs" />
57-
<Compile Include="KeyTests.cs" />
58-
<Compile Include="ListTests.cs" />
63+
<Compile Include="ConnectionTests.cs">
64+
<SubType>Code</SubType>
65+
</Compile>
66+
<Compile Include="HashTests.cs">
67+
<SubType>Code</SubType>
68+
</Compile>
69+
<Compile Include="HyperLogLogTests.cs">
70+
<SubType>Code</SubType>
71+
</Compile>
72+
<Compile Include="KeyTests.cs">
73+
<SubType>Code</SubType>
74+
</Compile>
75+
<Compile Include="ListTests.cs">
76+
<SubType>Code</SubType>
77+
</Compile>
5978
<Compile Include="Properties\AssemblyInfo.cs" />
60-
<Compile Include="PubSubTests.cs" />
61-
<Compile Include="ScriptingTests.cs" />
62-
<Compile Include="SentinelTests.cs" />
63-
<Compile Include="ServerTests.cs" />
64-
<Compile Include="SetTests.cs" />
65-
<Compile Include="SortedSetTests.cs" />
66-
<Compile Include="StringTests.cs" />
67-
<Compile Include="TransactionTests.cs" />
79+
<Compile Include="PubSubTests.cs">
80+
<SubType>Code</SubType>
81+
</Compile>
82+
<Compile Include="ScriptingTests.cs">
83+
<SubType>Code</SubType>
84+
</Compile>
85+
<Compile Include="SentinelTests.cs">
86+
<SubType>Code</SubType>
87+
</Compile>
88+
<Compile Include="ServerTests.cs">
89+
<SubType>Code</SubType>
90+
</Compile>
91+
<Compile Include="SetTests.cs">
92+
<SubType>Code</SubType>
93+
</Compile>
94+
<Compile Include="SortedSetTests.cs">
95+
<SubType>Code</SubType>
96+
</Compile>
97+
<Compile Include="StringTests.cs">
98+
<SubType>Code</SubType>
99+
</Compile>
100+
<Compile Include="TransactionTests.cs">
101+
<SubType>Code</SubType>
102+
</Compile>
68103
</ItemGroup>
69104
<ItemGroup>
70105
<ProjectReference Include="..\CSRedis\CSRedis.csproj">

CSRedis/CSRedis.csproj

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,11 @@
4141
<SignAssembly>true</SignAssembly>
4242
<AssemblyOriginatorKeyFile>$(StrongNameKeyPath)</AssemblyOriginatorKeyFile>
4343
</PropertyGroup>
44+
<PropertyGroup Condition=" '$(APPVEYOR)' == '' ">
45+
<SignAssembly>true</SignAssembly>
46+
<DelaySign>true</DelaySign>
47+
<AssemblyOriginatorKeyFile>..\csredis.pub.snk</AssemblyOriginatorKeyFile>
48+
</PropertyGroup>
4449
<ItemGroup>
4550
<Reference Include="System" />
4651
<Reference Include="System.Core" />

csredis.pub.snk

160 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)