Add strong naming for all projects
The snk file was generated using this command: sn -k CloudEventsSdk.snk Note that this is a breaking change. (Other changes have already been breaking, but this is *very* breaking.) Fixes #24. Signed-off-by: Jon Skeet <jonskeet@google.com>
This commit is contained in:
parent
c50fd95c50
commit
48d697abad
Binary file not shown.
|
@ -1,6 +1,11 @@
|
|||
<Project>
|
||||
<PropertyGroup>
|
||||
<!-- Make the repository root available for other properties -->
|
||||
<RepoRoot>$([System.IO.Path]::GetDirectoryName($([MSBuild]::GetPathOfFileAbove('.gitignore', '$(MSBuildThisFileDirectory)'))))</RepoRoot>
|
||||
|
||||
<!-- Build properties -->
|
||||
<AssemblyOriginatorKeyFile>$(RepoRoot)/CloudEventsSdk.snk</AssemblyOriginatorKeyFile>
|
||||
<SignAssembly>True</SignAssembly>
|
||||
<Deterministic>True</Deterministic>
|
||||
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
|
||||
|
||||
|
|
Loading…
Reference in New Issue