Skip to content
This repository was archived by the owner on Dec 2, 2022. It is now read-only.

Commit aeb008a

Browse files
committed
Minor update
Version 1.0.1
1 parent e1e256a commit aeb008a

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

AniAPI.NET.Test/AniAPI.NET.Test.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFramework>net5.0</TargetFramework>
@@ -9,6 +9,7 @@
99
<ItemGroup>
1010
<PackageReference Include="Microsoft.Extensions.Configuration" Version="5.0.0" />
1111
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="5.0.0" />
12+
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="5.0.0" />
1213
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
1314
<PackageReference Include="xunit" Version="2.4.1" />
1415
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">

AniAPI.NET/AniAPI.NET.csproj

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFramework>net5.0</TargetFramework>
5+
<PackageId>AniAPI.NET</PackageId>
6+
<Version>1.0.1</Version>
7+
<Authors>Dazorn96</Authors>
8+
<Company>AnIAPI</Company>
9+
<PackageReleaseNotes>Removed unused packages</PackageReleaseNotes>
10+
<PackageTags>aniapi anime api wrapper netcore</PackageTags>
11+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
512
</PropertyGroup>
613

714
<ItemGroup>
8-
<PackageReference Include="Microsoft.Extensions.Configuration" Version="5.0.0" />
9-
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="5.0.0" />
10-
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="5.0.0" />
11-
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="5.0.0" />
1215
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
1316
</ItemGroup>
1417

AniAPI.NET/Helpers/HttpHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
namespace AniAPI.NET.Helpers
1111
{
12-
public class HttpHelper
12+
internal class HttpHelper
1313
{
1414
private string _protocol;
1515
private string _hostName;

AniAPI.NET/Helpers/OAuthHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
namespace AniAPI.NET.Helpers
1616
{
17-
public class OAuthHelper
17+
internal class OAuthHelper
1818
{
1919
private readonly string _authPath = "https://api.aniapi.com/v1/oauth";
2020
private readonly string _codePath = "https://api.aniapi.com/v1/oauth/token";

0 commit comments

Comments
 (0)