Skip to content

Commit

Permalink
v5.1: net6.0, packages updated
Browse files Browse the repository at this point in the history
  • Loading branch information
justdmitry committed Feb 3, 2023
1 parent f6ba076 commit c22bd2e
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 11 deletions.
8 changes: 4 additions & 4 deletions NetTelegramBotApi.Tests/NetTelegramBotApi.Tests.csproj
@@ -1,14 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>NetTelegramBotApi</RootNamespace>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.10.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.1" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
13 changes: 9 additions & 4 deletions NetTelegramBotApi/NetTelegramBotApi.csproj
Expand Up @@ -3,12 +3,12 @@
<PropertyGroup>
<Description>Telegram Bot API library</Description>
<AssemblyTitle>NetTelegramBotApi</AssemblyTitle>
<Version>5.0.0</Version>
<TargetFramework>net5.0</TargetFramework>
<Version>5.1.0</Version>
<TargetFramework>net6.0</TargetFramework>
<AssemblyName>NetTelegramBotApi</AssemblyName>
<PackageId>NetTelegramBotApi</PackageId>
<PackageTags>telegram;bot;api</PackageTags>
<PackageReleaseNotes>See https://github.com/justdmitry/NetTelegramBotApi/releases/tag/v5.0.0</PackageReleaseNotes>
<PackageReleaseNotes>See https://github.com/justdmitry/NetTelegramBotApi/releases/tag/v5.1.0</PackageReleaseNotes>
<PackageIcon>package-icon.png</PackageIcon>
<PackageProjectUrl>https://github.com/justdmitry/NetTelegramBotApi</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
Expand All @@ -18,17 +18,22 @@
<Copyright>Copyright © Dmitry Popov, 2015-2021</Copyright>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="System.Text.Json" Version="5.0.0" />
<PackageReference Include="System.Text.Json" Version="6.0.0" />
</ItemGroup>

<ItemGroup>
<None Include="..\package-icon.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

</Project>
6 changes: 3 additions & 3 deletions TelegramBotDemo-vNext/TelegramBotDemo-vNext.csproj
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<Description>TelegramBotDemo-vNext Console Application</Description>
<Authors>Dmitry</Authors>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<AssemblyName>TelegramBotDemo-vNext</AssemblyName>
<OutputType>Exe</OutputType>
<PackageId>TelegramBotDemo-vNext</PackageId>
Expand All @@ -18,8 +18,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />
</ItemGroup>

</Project>

0 comments on commit c22bd2e

Please sign in to comment.