Skip to content

Commit cc8f5c5

Browse files
Ocelot NuGet package README file (#2074)
* Add Ocelot.csproj README.md link * Code review --------- Co-authored-by: Raman Maksimchuk <[email protected]>
1 parent 34cb3eb commit cc8f5c5

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/Ocelot/Ocelot.csproj

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@
44
<ImplicitUsings>disable</ImplicitUsings>
55
<Nullable>disable</Nullable>
66
<NoPackageAnalysis>true</NoPackageAnalysis>
7-
<Description>Ocelot is an API Gateway. The project is aimed at people using .NET running a micro services / service orientated architecture that need a unified point of entry into their system. In particular I want easy integration with IdentityServer reference and bearer tokens. reference tokens. Ocelot is a bunch of middlewares in a specific order. Ocelot manipulates the HttpRequest object into a state specified by its configuration until it reaches a request builder middleware where it creates a HttpRequestMessage object which is used to make a request to a downstream service. The middleware that makes the request is the last thing in the Ocelot pipeline. It does not call the next middleware. The response from the downstream service is stored in a per request scoped repository and retrived as the requests goes back up the Ocelot pipeline. There is a piece of middleware that maps the HttpResponseMessage onto the HttpResponse object and that is returned to the client. That is basically it with a bunch of other features.</Description>
7+
<Description>Ocelot is an API gateway based on .NET stack.</Description>
88
<AssemblyTitle>Ocelot</AssemblyTitle>
99
<VersionPrefix>0.0.0-dev</VersionPrefix>
1010
<AssemblyName>Ocelot</AssemblyName>
1111
<PackageId>Ocelot</PackageId>
1212
<PackageTags>API Gateway;.NET core</PackageTags>
1313
<PackageProjectUrl>https://github.com/ThreeMammals/Ocelot</PackageProjectUrl>
1414
<PackageIconUrl>https://raw.githubusercontent.com/ThreeMammals/Ocelot/develop/images/ocelot_logo.png</PackageIconUrl>
15+
<PackageReadmeFile>README.md</PackageReadmeFile>
1516
<RuntimeIdentifiers>win-x64;osx-x64</RuntimeIdentifiers>
1617
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
1718
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
@@ -55,4 +56,7 @@
5556
<PackageReference Include="Microsoft.AspNetCore.MiddlewareAnalysis" Version="8.0.0" />
5657
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.0" />
5758
</ItemGroup>
59+
<ItemGroup>
60+
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
61+
</ItemGroup>
5862
</Project>

0 commit comments

Comments
 (0)