|
6 | 6 | <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
7 | 7 | </PropertyGroup> |
8 | 8 |
|
| 9 | + <!-- Strong name signing ============================================= --> |
| 10 | + <PropertyGroup Condition="'$(CDP_BUILD_TYPE)' == 'Official'"> |
| 11 | + <SignAssembly>true</SignAssembly> |
| 12 | + <KeyFile>$(SigningKeyPath)</KeyFile> |
| 13 | + <AssemblyOriginatorKeyFile>$(SigningKeyPath)</AssemblyOriginatorKeyFile> |
| 14 | + </PropertyGroup> |
| 15 | + <PropertyGroup Condition="'$(CDP_BUILD_TYPE)' != 'Official'"> |
| 16 | + <AssemblyOriginatorKeyFile>$(SigningKeyPath)</AssemblyOriginatorKeyFile> |
| 17 | + </PropertyGroup> |
| 18 | + |
9 | 19 | <!-- OS Constants ==================================================== --> |
10 | 20 | <PropertyGroup> |
11 | 21 | <!-- @TODO: Move to directory.build.props? --> |
|
58 | 68 | <Reference Include="System.Configuration" /> |
59 | 69 | <Reference Include="System.EnterpriseServices" /> |
60 | 70 | <Reference Include="System.Transactions" /> |
| 71 | + |
61 | 72 | <PackageReference Include="Azure.Core" /> |
62 | 73 | <PackageReference Include="Azure.Identity" /> |
63 | 74 | <PackageReference Include="Microsoft.Bcl.Cryptography" /> |
|
69 | 80 | <PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" /> |
70 | 81 | <PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" /> |
71 | 82 | <PackageReference Include="System.Buffers" /> |
| 83 | + <PackageReference Include="System.Diagnostics.DiagnosticSource" /> |
| 84 | + <PackageReference Include="System.Memory" /> |
72 | 85 | <PackageReference Include="System.Runtime.InteropServices.RuntimeInformation" /> |
73 | 86 | <PackageReference Include="System.Security.Cryptography.Pkcs" /> |
74 | 87 | <PackageReference Include="System.Text.Json" /> |
|
0 commit comments