Skip to content
This repository has been archived by the owner on Jul 13, 2024. It is now read-only.

Commit

Permalink
docs: improves package information
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardosbcabral committed Sep 25, 2023
1 parent e2b75e0 commit 5ba9704
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 10 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,7 @@ jobs:
run: dotnet restore src/PipelineRD.sln

- name: Build
run: dotnet build --configuration Release --no-restore src/PipelineRD.sln
run: dotnet build --configuration Release --no-restore src/PipelineRD.sln

- name: Run Unit Tests
run: dotnet test --configuration Release --no-restore --no-build src/PipelineRD.Tests
Binary file added icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 23 additions & 9 deletions src/PipelineRD/PipelineRD.csproj
Original file line number Diff line number Diff line change
@@ -1,18 +1,32 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6</TargetFramework>
<LangVersion>latest</LangVersion>
<OutputType>Library</OutputType>
<TargetFrameworks>net6</TargetFrameworks>
<Summary>A chain of responsability pattern implementation in .NET that supports retry policy, async steps, rollback, pipeline recovery by cache.</Summary>
<Description>A chain of responsability pattern implementation in .NET that supports retry policy, async steps, rollback, pipeline recovery by cache.</Description>
<PackageId>PipelineRD</PackageId>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Authors>Eduardo Cabral</Authors>
<RepositoryUrl>https://github.com/eduardosbcabral/pipelineRD</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<IsPackable>true</IsPackable>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<LangVersion>latest</LangVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="5.0.0" />
<PackageReference Include="Polly" Version="7.2.2" />
<PackageReference Include="Serilog" Version="3.0.1" />
<PackageReference Include="System.Text.Json" Version="6.0.5" />
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="5.0.0" />
<PackageReference Include="Polly" Version="7.2.2" />
<PackageReference Include="Serilog" Version="3.0.1" />
<PackageReference Include="System.Text.Json" Version="6.0.5" />
</ItemGroup>

<ItemGroup>
<None Include="..\..\icon.png" Pack="true" PackagePath="" Visible="False" />
<None Include="..\..\README.md" Pack="true" PackagePath="" Visible="False" />
</ItemGroup>
</Project>

0 comments on commit 5ba9704

Please sign in to comment.