Browse Source

The MongoDB.Bson.dll and MongoDB.Driver.dll are now strongly named. They are signed using a TemporaryKeyPair. Official binaries will be resigned using a different strong name key.

pull/48/head
rstam 15 years ago
parent
commit
bad5b5c59e
  1. 1
      .gitattributes
  2. 6
      Bson/Bson.csproj
  3. 6
      Driver/Driver.csproj
  4. BIN
      Keys/TemporaryKeyPair.snk
  5. 4
      Keys/TemporaryKeyPair.txt

1
.gitattributes

@ -1,2 +1,3 @@
*.docx binary
*.dll binary
*.snk binary

6
Bson/Bson.csproj

@ -52,6 +52,12 @@
<WarningLevel>4</WarningLevel>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>..\Keys\TemporaryKeyPair.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core">

6
Driver/Driver.csproj

@ -52,6 +52,12 @@
<WarningLevel>4</WarningLevel>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>..\Keys\TemporaryKeyPair.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core">

BIN
Keys/TemporaryKeyPair.snk

4
Keys/TemporaryKeyPair.txt

@ -0,0 +1,4 @@
The TemporaryKeyPair.snk file contains a temporary public/private key pair so that
you can build signed assemblies directly from the source tree retrieved from github.
The official releases will resign the DLLs with a different public/private key pair.
Loading…
Cancel
Save