Skip to content

Commit e8e18af

Browse files
committed
Upgrade to .NET Core 1.0.0 and netstandart1.3
1 parent ad0bbb1 commit e8e18af

File tree

10 files changed

+9810
-1061
lines changed

10 files changed

+9810
-1061
lines changed

NetTelegramBotApi/NetTelegramBotApi.xproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0</VisualStudioVersion>
55
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
66
</PropertyGroup>
7-
<Import Project="$(VSToolsPath)\DNX\Microsoft.DNX.Props" Condition="'$(VSToolsPath)' != ''" />
7+
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.Props" Condition="'$(VSToolsPath)' != ''" />
88
<PropertyGroup Label="Globals">
99
<ProjectGuid>0ca802ad-0f85-4314-8d70-2c5f182c9f42</ProjectGuid>
1010
<RootNamespace>NetTelegramBotApi</RootNamespace>
1111
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">..\artifacts\obj\$(MSBuildProjectName)</BaseIntermediateOutputPath>
12-
<OutputPath Condition="'$(OutputPath)'=='' ">..\artifacts\bin\$(MSBuildProjectName)\</OutputPath>
12+
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath>
1313
</PropertyGroup>
1414
<PropertyGroup>
1515
<SchemaVersion>2.0</SchemaVersion>
@@ -20,5 +20,5 @@
2020
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
2121
<ProduceOutputsOnBuild>True</ProduceOutputsOnBuild>
2222
</PropertyGroup>
23-
<Import Project="$(VSToolsPath)\DNX\Microsoft.DNX.targets" Condition="'$(VSToolsPath)' != ''" />
23+
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.targets" Condition="'$(VSToolsPath)' != ''" />
2424
</Project>

NetTelegramBotApi/project.json

Lines changed: 18 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,28 @@
11
{
2-
"version": "3.7.50926",
2+
"version": "3.8.0",
33
"title": "NetTelegramBotApi",
44
"description": "Telegram Bot API library",
5-
"authors": [ "Dmitry Popov" ],
6-
"tags": [ "telegram", "bot", "api" ],
7-
"projectUrl": "https://github.com/justdmitry/NetTelegramBotApi",
8-
"iconUrl": "https://raw.githubusercontent.com/justdmitry/NetTelegramBotApi/master/package-icon.gif",
9-
"copyright": "Copyright © Dmitry Popov, 2015",
10-
"releaseNotes": "New! Support files download (sent by users)! Also, proxy support included. Other API changes implemented too.",
5+
6+
"packOptions": {
7+
"summary": "Telegram Bot API library",
8+
"owners": [ "Dmitry Popov" ],
9+
"tags": [ "telegram", "bot", "api" ],
10+
"projectUrl": "https://github.com/justdmitry/NetTelegramBotApi",
11+
"iconUrl": "https://raw.githubusercontent.com/justdmitry/NetTelegramBotApi/master/package-icon.gif",
12+
"copyright": "Copyright © Dmitry Popov, 2015",
13+
"releaseNotes": "Upgrade to .NET Core RTM and netstandard1.3",
14+
"repository": {
15+
"type": "git",
16+
"url": "https://github.com/justdmitry/NetTelegramBotApi.git"
17+
}
18+
},
1119

1220
"dependencies": {
13-
"Newtonsoft.Json": "7.0.1"
21+
"Newtonsoft.Json": "9.0.1",
22+
"System.Net.Http": "4.1.0"
1423
},
1524

1625
"frameworks": {
17-
"net45": {
18-
"frameworkAssemblies": {
19-
"System.Net.Http": "4.0.0"
20-
}
21-
},
22-
"dnx45": {
23-
"frameworkAssemblies": {
24-
"System.Net.Http": "4.0.0"
25-
}
26-
},
27-
"dnx50": {
28-
"frameworkAssemblies": {
29-
"System.Net.Http": "4.0.0"
30-
}
31-
},
32-
"dnxcore50": {
33-
"dependencies": {
34-
"System.Linq": "4.0.0",
35-
"System.Net.Http": "4.0.0",
36-
"System.Collections": "4.0.10",
37-
"System.Text.RegularExpressions": "4.0.10"
38-
}
39-
}
26+
"netstandard1.3": {}
4027
}
4128
}

0 commit comments

Comments
 (0)