|
34 | 34 | <ErrorReport>prompt</ErrorReport> |
35 | 35 | <WarningLevel>4</WarningLevel> |
36 | 36 | </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> |
37 | 46 | <ItemGroup> |
38 | 47 | <Reference Include="System" /> |
39 | 48 | <Reference Include="System.Configuration" /> |
|
51 | 60 | </Otherwise> |
52 | 61 | </Choose> |
53 | 62 | <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> |
59 | 78 | <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> |
68 | 103 | </ItemGroup> |
69 | 104 | <ItemGroup> |
70 | 105 | <ProjectReference Include="..\CSRedis\CSRedis.csproj"> |
|
0 commit comments