Skip to content

Commit ae373cb

Browse files
committed
updates to asp.net core sample
1 parent 3a47cca commit ae373cb

File tree

1 file changed

+39
-42
lines changed

1 file changed

+39
-42
lines changed
Lines changed: 39 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
{
2+
"buildOptions": {
3+
"debugType": "portable",
4+
"emitEntryPoint": true,
5+
"preserveCompilationContext": true
6+
},
27
"dependencies": {
3-
"Exceptionless.AspNetCore": {
4-
"target": "project"
5-
},
68
"Exceptionless": {
79
"target": "project"
810
},
9-
"Microsoft.NETCore.App": {
10-
"version": "1.0.0-rc2-3002702"//,
11-
//"type": "platform"
11+
"Exceptionless.AspNetCore": {
12+
"target": "project"
1213
},
1314
"Microsoft.AspNetCore.Mvc": "1.0.0-rc2-final",
1415
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-rc2-final",
@@ -20,41 +21,37 @@
2021
"Microsoft.Extensions.Logging.Console": "1.0.0-rc2-final",
2122
"Microsoft.Extensions.Logging.Debug": "1.0.0-rc2-final"
2223
},
23-
24-
"tools": {
25-
"Microsoft.AspNetCore.Server.IISIntegration.Tools": {
26-
"version": "1.0.0-preview1-final",
27-
"imports": "portable-net45+win8+dnxcore50"
28-
}
29-
},
30-
31-
"frameworks": {
32-
"netcoreapp1.0": {
33-
"imports": [
34-
"dotnet5.6",
35-
"dnxcore50",
36-
"portable-net45+win8"
37-
]
24+
"frameworks": {
25+
"netcoreapp1.0": {
26+
"dependencies": {
27+
"Microsoft.NETCore.App": {
28+
"version": "1.0.0-rc2-3002702",
29+
"type": "platform"
30+
}
31+
},
32+
"imports": [
33+
"dotnet5.6",
34+
"dnxcore50",
35+
"portable-net45+win8"
36+
]
37+
}
38+
},
39+
"tools": {
40+
"Microsoft.AspNetCore.Server.IISIntegration.Tools": {
41+
"version": "1.0.0-preview1-final",
42+
"imports": "portable-net45+win8+dnxcore50"
43+
}
44+
},
45+
"runtimeOptions": {
46+
"gcServer": true
47+
},
48+
"publishOptions": {
49+
"include": [
50+
"appsettings.json",
51+
"web.config"
52+
]
53+
},
54+
"scripts": {
55+
"postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
3856
}
39-
},
40-
41-
"buildOptions": {
42-
"emitEntryPoint": true,
43-
"preserveCompilationContext": true
44-
},
45-
46-
"runtimeOptions": {
47-
"gcServer": true
48-
},
49-
50-
"publishOptions": {
51-
"include": [
52-
"appsettings.json",
53-
"web.config"
54-
]
55-
},
56-
57-
"scripts": {
58-
"postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
59-
}
6057
}

0 commit comments

Comments
 (0)