Skip to content
This repository was archived by the owner on Nov 7, 2018. It is now read-only.

Commit d866ee5

Browse files
committed
Added aspnet50 to the list of targets
1 parent a815cd5 commit d866ee5

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

src/Microsoft.Framework.OptionsModel/OptionsServices.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public static IEnumerable<IServiceDescriptor> GetDefaultServices(IConfiguration
3030
public static void ReadProperties(object obj, IConfiguration config)
3131
{
3232
// No convert on portable
33-
#if NET45 || ASPNETCORE50
33+
#if NET45 || ASPNET50|| ASPNETCORE50
3434
if (obj == null || config == null)
3535
{
3636
return;

src/Microsoft.Framework.OptionsModel/project.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"Microsoft.Framework.DependencyInjection": "1.0.0-*"
66
},
77
"frameworks": {
8-
"net45": {},
8+
"net45": { },
9+
"aspnet50": { },
910
"aspnetcore50": {
1011
"dependencies": {
1112
"System.Collections": "4.0.10.0",

test/Microsoft.Framework.OptionsModel.Test/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"Xunit.KRunner": "1.0.0-*"
77
},
88
"frameworks": {
9-
"net45": {}
9+
"aspnet50": {}
1010
},
1111
"commands": {
1212
"test": "Xunit.KRunner"

0 commit comments

Comments
 (0)