diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index 05f67c7..de67896 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -75,14 +75,15 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Setup .NET Core 3.1 - uses: actions/setup-dotnet@v1 - with: - dotnet-version: '3.1.x' + - name: Setup .NET 5.0 uses: actions/setup-dotnet@v1 with: dotnet-version: '5.0.x' + - name: Setup .NET 6.0 + uses: actions/setup-dotnet@v1 + with: + dotnet-version: '6.x.x' - name: Create Release NuGet package run: | arrTag=(${GITHUB_REF//\// }) @@ -98,5 +99,4 @@ jobs: curl -vX PUT -u "$GITHUB_USER:$GITHUB_TOKEN" -F package=@$f $GITHUB_FEED done - name: Push to NuGet Feed - run: dotnet nuget push ./nupkg/*.nupkg --source $NUGET_FEED --skip-duplicate --api-key $NUGET_KEY - \ No newline at end of file + run: dotnet nuget push ./nupkg/*.nupkg --source $NUGET_FEED --skip-duplicate --api-key $NUGET_KEY \ No newline at end of file diff --git a/README.md b/README.md index 2d8d497..6476f52 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,6 @@ [![GNU LGPL licensed](https://img.shields.io/github/license/OmegaRogue/TenorSharp)](COPYING.LESSER) [![Nuget](https://img.shields.io/nuget/v/TenorSharp)](https://www.nuget.org/packages/TenorSharp/) [![Discord](https://img.shields.io/discord/569206809693257728)](https://discord.gg/sWwzJeG) -[![Documentation Status](https://readthedocs.org/projects/tenorsharp/badge/?version=latest)](https://tenorsharp.readthedocs.io/en/latest/?badge=latest) TenorSharp is a C# Library for the [TenorAPI](https://tenor.com/gifapi). TenorSharp was made with dotNET 5.0 and 6.0 @@ -15,7 +14,7 @@ For Development, fork and Clone this GitHub Repo. For Usage, Refer to [Installing](#installing) -If you need more help, refer to the [Documentation](https://tenorsharp.readthedocs.io/en/latest/?badge=latest), or [join the Discord Server](https://discord.gg/sWwzJeG). +If you need more help, refer to the XML Doc Comments, or [join the Discord Server](https://discord.gg/sWwzJeG). ### Dependencies @@ -23,7 +22,7 @@ TenorSharp is dependent on RestSharp and Newtonsoft.Json ### Installing -Use NuGet to Install [this Package](https://www.nuget.org/packages/TenorSharp +Use NuGet to Install [this Package](https://www.nuget.org/packages/TenorSharp) ## Usage Refer to the [Tenor API Attribution Guidelines](https://tenor.com/gifapi/documentation#attribution) to properly attribute Content retrieved from Tenor. diff --git a/TenorSharp/TenorSharp.csproj b/TenorSharp/TenorSharp.csproj index a74b227..c912e23 100644 --- a/TenorSharp/TenorSharp.csproj +++ b/TenorSharp/TenorSharp.csproj @@ -17,6 +17,7 @@ Update to dotnet 5 and dotnet 6 Add Async Methods Update Dependencies + true true 1.6.1 net5.0;net6.0