Skip to content

Commit

Permalink
Update README & package info
Browse files Browse the repository at this point in the history
  • Loading branch information
Cadabra committed Jun 11, 2024
1 parent 8b4bdad commit 27ec7ec
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 9 deletions.
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# DateRecurrenceR
# DateRecurrenceR [![Nuget](https://img.shields.io/nuget/v/DateRecurrenceR?logo=NuGet)](https://www.nuget.org/packages/DateRecurrenceR)

Library for represents a recurrence pattern of date.
Library for represents a recurrence pattern of date.

### Installing DateRecurrenceR

You should install [DateRecurrenceR with NuGet](https://www.nuget.org/packages/DateRecurrenceR):

Install-Package DateRecurrenceR

Or via the .NET Core command line interface:

dotnet add package DateRecurrenceR
21 changes: 14 additions & 7 deletions src/DateRecurrenceR/DateRecurrenceR.csproj
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<WarningsAsErrors>Nullable</WarningsAsErrors>
<TargetFramework>net8.0</TargetFramework>
<Version>0.1.0</Version>
<Title>DateRecurrenceR</Title>
<Authors>Sergey Olshanskiy</Authors>
<Company>Sergey Olshanskiy</Company>
<Copyright>Copyright Sergey Olshanskiy</Copyright>
<RepositoryUrl>https://github.com/Cadabra/DateRecurrenceR</RepositoryUrl>
<Description>Library for represents a recurrence pattern of date.</Description>
<Version>0.1.0</Version>
<RepositoryUrl>https://github.com/Cadabra/DateRecurrenceR</RepositoryUrl>
<ImplicitUsings>enable</ImplicitUsings>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<WarningsAsErrors>Nullable</WarningsAsErrors>
<Deterministic>true</Deterministic>
<Title>DateRecurrenceR</Title>
<PackageId>DateRecurrenceR</PackageId>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<ItemGroup>
Expand All @@ -20,4 +23,8 @@
</AssemblyAttribute>
</ItemGroup>

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

</Project>

0 comments on commit 27ec7ec

Please sign in to comment.