From f6b680bad4d16e3d36d03f2c7db3d9f8a7b152c9 Mon Sep 17 00:00:00 2001 From: Gregory Oschwald Date: Wed, 11 May 2016 17:10:44 -0700 Subject: [PATCH] Sign assembly again --- MaxMind.Db.Test/project.json | 3 ++- MaxMind.Db/Properties/AssemblyInfo.cs | 7 ++++++- MaxMind.Db/project.json | 7 +++++-- releasenotes.md | 4 ++++ 4 files changed, 17 insertions(+), 4 deletions(-) diff --git a/MaxMind.Db.Test/project.json b/MaxMind.Db.Test/project.json index 16f2ede..e54a87f 100644 --- a/MaxMind.Db.Test/project.json +++ b/MaxMind.Db.Test/project.json @@ -13,7 +13,8 @@ "test": "MaxMind.Db.Test" }, "buildOptions": { - "emitEntryPoint": true + "emitEntryPoint": true, + "keyFile": "../MaxMind.snk" }, "dependencies": { "MaxMind.Db": "2.1.0-*", diff --git a/MaxMind.Db/Properties/AssemblyInfo.cs b/MaxMind.Db/Properties/AssemblyInfo.cs index 6f5f960..981d263 100644 --- a/MaxMind.Db/Properties/AssemblyInfo.cs +++ b/MaxMind.Db/Properties/AssemblyInfo.cs @@ -44,4 +44,9 @@ [assembly: AssemblyVersion("2.0.0")] [assembly: AssemblyFileVersion("2.0.0")] -[assembly: InternalsVisibleTo("MaxMind.Db.Test")] +[assembly: InternalsVisibleTo("MaxMind.Db.Test,PublicKey=" + + "0024000004800000940000000602000000240000525341310004000001000100e30b6e4a9425b1" + + "617ffc8bdf79801e67a371f9f650db860dc0dfff92cb63258765a0955c6fcde1da78dbaf5bf84d" + + "0230946435957d2e52dc0d15673e372248dbff3bc8e6c75a632072e52cb0444850dddff5cc2be8" + + "f3e1f8954d7ede7675675a071672d9e97d3153d96b40fd30234be33eeb7fd1a4a78d6342967700" + + "56a2b1e5")] diff --git a/MaxMind.Db/project.json b/MaxMind.Db/project.json index ba2b1c1..5adf4d9 100644 --- a/MaxMind.Db/project.json +++ b/MaxMind.Db/project.json @@ -2,12 +2,15 @@ "version": "2.1.0-*", "description": ".NET reader for the MaxMind DB file format", "packOptions": { - "authors": [ "MaxMind, Inc." ], - "tags": [ "" ], + "authors": ["MaxMind, Inc."], + "tags": [""], "projectUrl": "https://github.com/maxmind/MaxMind-DB-Reader-dotnet", "licenseUrl": "https://github.com/maxmind/MaxMind-DB-Reader-dotnet/blob/v2.0.0/LICENSE", "copyright": "Copyright © 2013-2016" }, + "buildOptions": { + "keyFile": "../MaxMind.snk", + }, "frameworks": { "net45": { "frameworkAssemblies": { diff --git a/releasenotes.md b/releasenotes.md index 1f12d06..3258be1 100644 --- a/releasenotes.md +++ b/releasenotes.md @@ -1,5 +1,9 @@ # Release Nodes # +## 2.1.0-beta3 (2016-05-12) ## + +* The assemblies are now signed again. + ## 2.1.0-beta2 (2016-05-10) ## * Remove unnecessary Newtonsoft.Json dependency.