Skip to content

Commit

Permalink
Preparation for nuget
Browse files Browse the repository at this point in the history
  • Loading branch information
o.nadymov committed May 23, 2024
1 parent e1c7332 commit 98feaf3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@ https://github.com/spoleto-software/Spoleto.RestClient
Begin by installing the package through the [NuGet](https://www.nuget.org/packages/Spoleto.RestClient/) package manager with the command:
``Install-Package Spoleto.RestClient``.

## Getting started


## Features

- **Support for various data formats:** JSON, XML, Binary.
Expand Down
6 changes: 3 additions & 3 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,17 @@

<!-- Package info -->
<PropertyGroup>
<Product>Spoleto.Delivery library</Product>
<Product>Spoleto.RestClient library</Product>
<Authors>OlegNadymov;Spoleto-Software</Authors>
<Company>SPOLETO Software Development</Company>
<PackageIcon>MainIcon.jpg</PackageIcon>
<PackageProjectUrl>https://spoleto.ru</PackageProjectUrl>
<RepositoryUrl>https://github.com/spoleto-software/Spoleto.Delivery</RepositoryUrl>
<RepositoryUrl>https://github.com/spoleto-software/Spoleto.RestClient</RepositoryUrl>
<RepositoryType>GitHub</RepositoryType>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageTags>Delivery; Cdek; СДЭК; MasterPost; МастерПост</PackageTags>
<PackageTags>RestClient; Rest; Rest-Client; Http; HttpClient</PackageTags>
<Copyright>Copyright © $([System.DateTime]::Now.Year.ToString())</Copyright>
<PackageReleaseNotes></PackageReleaseNotes>
<Version>1.0.0</Version>
Expand Down
10 changes: 9 additions & 1 deletion src/Spoleto.RestClient/Spoleto.RestClient.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,16 @@
<Nullable>enable</Nullable>
</PropertyGroup>

<!-- Package info -->
<PropertyGroup>
<Title>Spoleto.RestClient</Title>
<PackageId>Spoleto.RestClient</PackageId>
<PackageTags>RestClient; Rest; Rest-Client; Http; HttpClient</PackageTags>
<Description>The powerful and flexible REST client (a wrapper around HttpClient) capable of executing requests and handling responses in various formats: JSON, XML and Binary. The client also supports authentication and provides the ability for flexible customization and overriding of base classes.</Description>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Spoleto.Common" Version="2.3.22.1303" />
<PackageReference Include="Spoleto.Common" Version="2.3.22.1303" />
</ItemGroup>

</Project>

0 comments on commit 98feaf3

Please sign in to comment.