Skip to content

Commit

Permalink
Adding Details to package
Browse files Browse the repository at this point in the history
  • Loading branch information
htedeschi committed Aug 18, 2021
1 parent 063f699 commit 5f68808
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 1 deletion.
25 changes: 25 additions & 0 deletions EasyHook/EasyHook.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,35 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<langversion>8</langversion>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageIcon>hook.png</PackageIcon>
<PackageReleaseNotes>- Created project
- Working only with POST requests
- Added details to NuGet Package descriptions</PackageReleaseNotes>
<Authors>Henrique Tedeschi</Authors>
<Company />
<Description>A NuGet Package to implement webhooks seamlessly into any .NET project.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/htedeschi/EasyHook</PackageProjectUrl>
<RepositoryUrl>https://github.com/htedeschi/EasyHook</RepositoryUrl>
<RepositoryType>GIT</RepositoryType>
<PackageTags>Webhook Web Hook EasyHook Easy Hook Trigger Event NuGet</PackageTags>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>

<ItemGroup>
<Folder Include="Resources\" />
</ItemGroup>

<ItemGroup>
<None Include="Resources\hook.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>

</Project>
1 change: 0 additions & 1 deletion EasyHook/EasyHook/WebHook.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ public WebHook(Requests<T> requests)
public async Task<EasyHookResponse> Send(T item)
{
return await _requests.PostRequest(item);

}
}
}
Binary file added EasyHook/Resources/hook.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 5f68808

Please sign in to comment.