Skip to content
This repository was archived by the owner on Jun 10, 2020. It is now read-only.

Commit 1e638ff

Browse files
committed
Enable strong name signing
Fixes issue #118
1 parent 0da5021 commit 1e638ff

File tree

7 files changed

+25
-4
lines changed

7 files changed

+25
-4
lines changed

keys/35MSSharedLib1024.snk

160 Bytes
Binary file not shown.

src/Microsoft.ApplicationInsights.AspNet/project.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{
1+
{
22
"title": "Application Insights for ASP.NET 5 Web Applications",
33
"description": "Application Insights for ASP.NET 5 web applications. See http://go.microsoft.com/fwlink/?LinkID=510752 for more information.",
44
"authors": [ "Microsoft" ],
@@ -9,6 +9,10 @@
99
"requireLicenseAcceptance": true,
1010
"iconUrl": "http://appanacdn.blob.core.windows.net/cdn/icons/aic.png",
1111
"tags": [ "Analytics", "ApplicationInsights", "Telemetry", "AppInsights", "ASP.NET 5" ],
12+
"compilationOptions": {
13+
"keyFile": "../../keys/35MSSharedLib1024.snk",
14+
"delaySign": true
15+
},
1216
"dependencies": {
1317
"Microsoft.ApplicationInsights": "1.1.1-beta",
1418
"Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc1-*",

test/EmptyApp.FunctionalTests/project.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
{
22
"webroot": "wwwroot",
33
"version": "1.0.0-*",
4-
4+
"compilationOptions": {
5+
"keyFile": "../../keys/35MSSharedLib1024.snk",
6+
"delaySign": true
7+
},
58
"dependencies": {
69
"Microsoft.AspNet.Server.WebListener": "1.0.0-rc1-*",
710
"Microsoft.ApplicationInsights.AspNet": "1.0.0-rc1-*",

test/FunctionalTestUtils/project.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
{
22
"version": "1.0.0-rc1-*",
3+
"compilationOptions": {
4+
"keyFile": "../../keys/35MSSharedLib1024.snk",
5+
"delaySign": true
6+
},
37
"dependencies": {
48
"Microsoft.ApplicationInsights": "1.1.1-beta",
59
"Microsoft.ApplicationInsights.AspNet": "1.0.0-rc1",

test/Microsoft.ApplicationInsights.AspNet.Tests/project.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
{
2+
"compilationOptions": {
3+
"keyFile": "../../keys/35MSSharedLib1024.snk",
4+
"delaySign": true
5+
},
26
"dependencies": {
37
"Microsoft.ApplicationInsights.AspNet": "1.0.0-rc1-*",
48
"Microsoft.AspNet.Http.Features": "1.0.0-rc1-*",

test/Mvc6Framework45.FunctionalTests/project.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22
"webroot": "wwwroot",
33
"userSecretsId": "aspnet5-Mvc6Framework45.FunctionalTests-42f45116-363a-40d3-9c44-bc58885d6e96",
44
"version": "1.0.0-rc1-*",
5-
5+
"compilationOptions": {
6+
"keyFile": "../../keys/35MSSharedLib1024.snk",
7+
"delaySign": true
8+
},
69
"dependencies": {
710
"EntityFramework.MicrosoftSqlServer": "7.0.0-rc1-*",
811
"EntityFramework.Commands": "7.0.0-rc1-*",

test/WebApiShimFw46.FunctionalTests/project.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
{
22
"webroot": "wwwroot",
33
"version": "1.0.0-beta8-*",
4-
4+
"compilationOptions": {
5+
"keyFile": "../../keys/35MSSharedLib1024.snk",
6+
"delaySign": true
7+
},
58
"dependencies": {
69
"FunctionalTestUtils": "1.0.0-rc1-*",
710
"Microsoft.ApplicationInsights.AspNet": "1.0.0-rc1",

0 commit comments

Comments
 (0)