Skip to content

Commit

Permalink
Merge pull request #4 from CommunityHiQ/FSUP-10060
Browse files Browse the repository at this point in the history
FSUP-10060: framework uplift
  • Loading branch information
OssiGalkin authored Dec 30, 2024
2 parents 5c5d6dd + 4e7ba3d commit 10c42a9
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/BuildAndTestOnEveryPush.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ jobs:
run: dotnet pack --configuration Release --include-source

- name: Push NuGet package to the testfeed
run: dotnet nuget push Frends.Community.TCP\bin\Release\Frends.Community.TCP.*.nupkg --api-key ${{ secrets.COMMUNITY_FEED_API_KEY }} --source https://www.myget.org/F/frends-community-test/api/v2/package --symbol-source https://www.myget.org/F/frends-community-test/symbols/api/v2/package
run: dotnet nuget push Frends.Community.TCP\bin\Release\Frends.Community.TCP.*.nupkg --api-key ${{ secrets.COMMUNITY_FEED_API_KEY }} --source https://www.myget.org/F/frends-community-test/api/v2/package
2 changes: 1 addition & 1 deletion .github/workflows/PackAndPushAfterMerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
run: dotnet pack --configuration Release --include-source

- name: Push NuGet package to the (prod) feed
run: dotnet nuget push Frends.Community.TCP\bin\Release\Frends.Community.TCP.*.nupkg --api-key ${{ secrets.COMMUNITY_FEED_API_KEY }} --source https://www.myget.org/F/frends-community/api/v2/package --symbol-source https://www.myget.org/F/frends-community/symbols/api/v2/package
run: dotnet nuget push Frends.Community.TCP\bin\Release\Frends.Community.TCP.*.nupkg --api-key ${{ secrets.COMMUNITY_FEED_API_KEY }} --source https://www.myget.org/F/frends-community/api/v2/package

- name: Create Release
id: create_release
Expand Down
4 changes: 2 additions & 2 deletions Frends.Community.TCP.Tests/Frends.Community.TCP.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
<PackageReference Include="nunit" Version="3.12.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0">
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
8 changes: 4 additions & 4 deletions Frends.Community.TCP/Frends.Community.TCP.csproj
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0;net471</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net471;net6.0;net8.0</TargetFrameworks>
<authors>HiQ Finland</authors>
<copyright>HiQ Finland</copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/CommunityHiQ/Frends.Community.TCP</PackageProjectUrl>
<IncludeSource>true</IncludeSource>
<PackageTags>Frends</PackageTags>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Version>0.0.10</Version>
<Version>1.0.0</Version>
</PropertyGroup>

<ItemGroup>
Expand All @@ -20,8 +20,8 @@

<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="System.ComponentModel.Annotations" Version="4.7.0" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
</ItemGroup>

</Project>
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,3 +79,4 @@ NOTE: Be sure to merge the latest from "upstream" before making a pull request!
| ------- | ------- |
| 0.0.1 | Demo version |
| 0.0.2 | Flush incoming stream before new command |
| 1.0.0 | Added target frameworks net6 & net8. Updated dependencies: downgraded Newtonsoft.Json to 12.0.1, upgraded System.ComponentModel.Annotations to 5.0.0, NUnit3TestAdapter to 4.6.0 |

0 comments on commit 10c42a9

Please sign in to comment.