Skip to content

Commit

Permalink
docs: add bare package README.md (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
skwasjer authored Aug 31, 2023
1 parent c6659fe commit 28f4e27
Show file tree
Hide file tree
Showing 8 changed files with 61 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Correlate.Abstractions/Correlate.Abstractions.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,13 @@
</PropertyGroup>

<PropertyGroup>
<Description>Provides abtractions to correlate requests between microservices.</Description>
<Description>Provides abstractions to correlate requests between microservices.</Description>
<PackageProjectUrl>https://github.com/skwasjer/Correlate</PackageProjectUrl>
<PackageTags>correlationid, correlation, correlate, causation, aspnet, middleware, httpclient, httpclientfactory</PackageTags>
</PropertyGroup>

<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>

</Project>
7 changes: 7 additions & 0 deletions src/Correlate.Abstractions/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
ASP.NET Core middleware component to correlate requests between microservices using correlation ID request headers.

### Useful links

- [GitHub / docs](https://github.com/skwasjer/Correlate)
- [Changelog](https://github.com/skwasjer/Correlate/releases)
- [Examples](https://github.com/skwasjer/Correlate/tree/main/examples)
4 changes: 4 additions & 0 deletions src/Correlate.AspNetCore/Correlate.AspNetCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>

<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Correlate.DependencyInjection\Correlate.DependencyInjection.csproj" />
</ItemGroup>
Expand Down
7 changes: 7 additions & 0 deletions src/Correlate.AspNetCore/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Provides abstractions to correlate requests between microservices.

### Useful links

- [GitHub / docs](https://github.com/skwasjer/Correlate)
- [Changelog](https://github.com/skwasjer/Correlate/releases)
- [Examples](https://github.com/skwasjer/Correlate/tree/main/examples)
4 changes: 4 additions & 0 deletions src/Correlate.Core/Correlate.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
<PackageTags>correlationid, correlation, correlate, causation, aspnet, middleware, httpclient, httpclientfactory</PackageTags>
</PropertyGroup>

<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="$(PackageVersion_Microsoft_Extensions)" />
<PackageReference Include="Microsoft.Extensions.Options" Version="$(PackageVersion_Microsoft_Extensions)" />
Expand Down
7 changes: 7 additions & 0 deletions src/Correlate.Core/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Correlate requests between microservices using a correlation ID.

### Useful links

- [GitHub / docs](https://github.com/skwasjer/Correlate)
- [Changelog](https://github.com/skwasjer/Correlate/releases)
- [Examples](https://github.com/skwasjer/Correlate/tree/main/examples)
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
<PackageTags>correlationid, correlation, correlate, causation, aspnet, middleware, httpclient, httpclientfactory</PackageTags>
</PropertyGroup>

<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Http" Version="$(PackageVersion_Microsoft_Extensions)" />
</ItemGroup>
Expand Down
23 changes: 23 additions & 0 deletions src/Correlate.DependencyInjection/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
Dependency injection extensions for Correlate.

### Dependency registration example

```csharp
var services = new ServiceCollection();
services.AddCorrelate();
```

### HttpClient delegating handler example

```csharp
var services = new ServiceCollection();
services
.AddHttpClient<MyService>()
.CorrelateRequests();
```

### Useful links

- [GitHub / docs](https://github.com/skwasjer/Correlate)
- [Changelog](https://github.com/skwasjer/Correlate/releases)
- [Examples](https://github.com/skwasjer/Correlate/tree/main/examples)

0 comments on commit 28f4e27

Please sign in to comment.