Skip to content

Commit

Permalink
- setting README files
Browse files Browse the repository at this point in the history
  • Loading branch information
ArdenHide committed Dec 25, 2024
1 parent 655ce35 commit 88896b6
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ A simple C# library for managing token distribution schedules.
## Features

- Define token distribution schedules with start and end times and ratios.
- Validate schedules to ensure correct distribution.
- Validate schedules to ensure correct distribution using [TokenSchedule.FluentValidation](https://github.com/The-Poolz/TokenSchedule/tree/master/src/TokenSchedule.FluentValidation).
- Retrieve the Token Generation Event (TGE) and subsequent distribution events.

## Usage
Expand Down
8 changes: 0 additions & 8 deletions buildConf/.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/The-Poolz/TokenSchedule</RepositoryUrl>
<PackageReleaseNotes>https://github.com/The-Poolz/TokenSchedule/releases/tag/v1.1.0</PackageReleaseNotes>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
Expand All @@ -19,11 +18,4 @@
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

<ItemGroup>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>
4 changes: 4 additions & 0 deletions src/TokenSchedule.FluentValidation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,3 +94,7 @@ class Program
2. **Create a list of schedule items** that you want to validate.
3. **Use the `ScheduleValidator`** to validate the entire collection.
4. **Handle the validation results**, e.g. by displaying errors or by throwing exceptions.

## License

This project is licensed under the MIT License - see the LICENSE file for details.
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,18 @@
<Nullable>enable</Nullable>
<PackageId>TokenSchedule.FluentValidation</PackageId>
<Product>TokenSchedule.FluentValidation</Product>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FluentValidation" Version="11.11.0" />
</ItemGroup>

<ItemGroup>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

</Project>
2 changes: 0 additions & 2 deletions src/TokenSchedule/README.md

This file was deleted.

7 changes: 7 additions & 0 deletions src/TokenSchedule/TokenSchedule.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,14 @@
<TargetFramework>netstandard2.1</TargetFramework>
<PackageId>TokenSchedule</PackageId>
<Product>TokenSchedule</Product>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\TokenSchedule.FluentValidation\TokenSchedule.FluentValidation.csproj" />
Expand Down

0 comments on commit 88896b6

Please sign in to comment.