Skip to content

Commit

Permalink
The MongoDB.Bson.dll and MongoDB.Driver.dll are now strongly named. T…
Browse files Browse the repository at this point in the history
…hey are signed using a TemporaryKeyPair. Official binaries will be resigned using a different strong name key.
  • Loading branch information
rstam committed Mar 3, 2011
1 parent 3fc8433 commit bad5b5c
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
*.docx binary
*.dll binary
*.snk binary
6 changes: 6 additions & 0 deletions Bson/Bson.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -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">
Expand Down
6 changes: 6 additions & 0 deletions Driver/Driver.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -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">
Expand Down
Binary file added Keys/TemporaryKeyPair.snk
Binary file not shown.
4 changes: 4 additions & 0 deletions Keys/TemporaryKeyPair.txt
Original file line number Diff line number Diff line change
@@ -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.

0 comments on commit bad5b5c

Please sign in to comment.