Skip to content

Commit 1d35166

Browse files
authored
Merge pull request #8 from aspnet/pakrym/netcoreapp
Target netcoreapp and reference NETCore.App
2 parents 522e30a + 75ab329 commit 1d35166

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

src/Microsoft.AspNetCore/project.json

+15-3
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,22 @@
1313
"Microsoft.Extensions.Logging": "1.1.0-*",
1414
"Microsoft.Extensions.Logging.Console": "1.1.0-*",
1515
"Microsoft.Extensions.Options.ConfigurationExtensions": "1.1.0-*",
16-
"NETStandard.Library": "1.6.1-*"
1716
},
1817
"frameworks": {
19-
"netstandard1.3": {},
20-
"net451": {}
18+
"netcoreapp1.0": {
19+
"dependencies": {
20+
"Microsoft.NETCore.App": "1.1.0-*"
21+
}
22+
},
23+
"netcoreapp1.1": {
24+
"dependencies": {
25+
"Microsoft.NETCore.App": "1.1.0-*"
26+
}
27+
},
28+
"net451": {
29+
"dependencies": {
30+
"NETStandard.Library": "1.6.1-*"
31+
}
32+
}
2133
}
2234
}

0 commit comments

Comments
 (0)