Skip to content

Commit

Permalink
fix: net45 and net46 target frameworks added back
Browse files Browse the repository at this point in the history
  • Loading branch information
justdmitry committed Jul 17, 2016
1 parent e8e18af commit bb92c96
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 8 deletions.
21 changes: 17 additions & 4 deletions NetTelegramBotApi/project.json
@@ -1,5 +1,5 @@
{
"version": "3.8.0",
"version": "3.8.1",
"title": "NetTelegramBotApi",
"description": "Telegram Bot API library",

Expand All @@ -18,11 +18,24 @@
},

"dependencies": {
"Newtonsoft.Json": "9.0.1",
"System.Net.Http": "4.1.0"
"Newtonsoft.Json": "9.0.1"
},

"frameworks": {
"netstandard1.3": {}
"net45": {
"frameworkAssemblies": {
"System.Net.Http": "4.0.0.0"
}
},
"net46": {
"frameworkAssemblies": {
"System.Net.Http": "4.0.0.0"
}
},
"netstandard1.3": {
"dependencies": {
"System.Net.Http": "4.1.0"
}
}
}
}
35 changes: 32 additions & 3 deletions NetTelegramBotApi/project.lock.json
Expand Up @@ -2,6 +2,28 @@
"locked": false,
"version": 2,
"targets": {
".NETFramework,Version=v4.5": {
"Newtonsoft.Json/9.0.1": {
"type": "package",
"compile": {
"lib/net45/Newtonsoft.Json.dll": {}
},
"runtime": {
"lib/net45/Newtonsoft.Json.dll": {}
}
}
},
".NETFramework,Version=v4.6": {
"Newtonsoft.Json/9.0.1": {
"type": "package",
"compile": {
"lib/net45/Newtonsoft.Json.dll": {}
},
"runtime": {
"lib/net45/Newtonsoft.Json.dll": {}
}
}
},
".NETStandard,Version=v1.3": {
"Microsoft.CSharp/4.0.1": {
"type": "package",
Expand Down Expand Up @@ -3397,10 +3419,17 @@
},
"projectFileDependencyGroups": {
"": [
"Newtonsoft.Json >= 9.0.1",
"System.Net.Http >= 4.1.0"
"Newtonsoft.Json >= 9.0.1"
],
".NETFramework,Version=v4.5": [
"System.Net.Http >= 4.0.0"
],
".NETStandard,Version=v1.3": []
".NETFramework,Version=v4.6": [
"System.Net.Http >= 4.0.0"
],
".NETStandard,Version=v1.3": [
"System.Net.Http >= 4.1.0"
]
},
"tools": {},
"projectFileToolGroups": {}
Expand Down
2 changes: 1 addition & 1 deletion TelegramBotDemo/packages.config
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="NetTelegramBotApi" version="3.7.50926" targetFramework="net45" />
<package id="NetTelegramBotApi" version="3.8.1" targetFramework="net45" />
<package id="Newtonsoft.Json" version="7.0.1" targetFramework="net45" />
</packages>

0 comments on commit bb92c96

Please sign in to comment.