Skip to content

Commit

Permalink
Updated .csproj
Browse files Browse the repository at this point in the history
  • Loading branch information
darkarki83 committed Sep 26, 2024
1 parent f1229eb commit 4df6920
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,29 @@
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Title>DownloaderV3.Source CovalentDocument Module</Title>
<Version>1.0.0</Version>
<Company>The Poolz</Company>
<Description>The module for fetching, decoding, and saving blockchain event data using Covalent API in the DownloaderV3 system.</Description>
<Copyright>© 2024 The Poolz</Copyright>
<PackageProjectUrl>https://github.com/The-Poolz/DownloaderV3/tree/master/src/DownloaderV3.Source.CovalentDocument</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/The-Poolz/DownloaderV3/tree/master/src/DownloaderV3.Source.CovalentDocument</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>blockchain, downloader, covalent, document, events</PackageTags>
<PackageReleaseNotes>Release Notes for DownloaderV3.Source.CovalentDocument v1.0.1:</PackageReleaseNotes>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\LICENSE.txt">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

<ItemGroup>
<PackageReference Include="DownloaderV3.Destination" Version="1.0.0" />
<PackageReference Include="Net.Cache.DynamoDb.ERC20" Version="1.3.5" />
<PackageReference Include="Nethereum.Hex" Version="4.21.4" />
<PackageReference Include="Nethereum.Util" Version="4.21.4" />
Expand All @@ -16,7 +36,10 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\DownloaderV3.Destination\DownloaderV3.Destination.csproj" />
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,38 @@
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Title>DownloaderV3.Source CovalentLastBlock Module</Title>
<Version>1.0.0</Version>
<Company>The Poolz</Company>
<Authors>$(Authors)</Authors>
<Copyright>Copyright @ darkarki83 The-Poolz 2024</Copyright>
<Description>The module for fetching the latest block data using Covalent API in the DownloaderV3 system.&lt;</Description>
<PackageProjectUrl>https://github.com/The-Poolz/DownloaderV3/tree/master/src/DownloaderV3.Source.CovalentLastBlock</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/The-Poolz/DownloaderV3/tree/master/src/DownloaderV3.Source.CovalentLastBlock</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>Release Notes for DownloaderV3.Source.CovalentLastBlock v1.0.1:</PackageReleaseNotes>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\LICENSE.txt">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Flurl.Http" Version="4.0.2" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Utils.EnvironmentManager" Version="4.0.1" />
</ItemGroup>

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

</Project>
28 changes: 25 additions & 3 deletions src/DownloaderV3/DownloaderV3.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,40 @@
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Title>DownloaderV3 Module</Title>
<Version>1.0.0</Version>
<Company>The Poolz</Company>
<Copyright>© 2024 The Poolz</Copyright>
<PackageProjectUrl>https://github.com/The-Poolz/DownloaderV3/tree/master/src/DownloaderV3</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/The-Poolz/DownloaderV3/tree/master/src/DownloaderV3</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>Release Notes for DownloaderV3 v1.0.1:</PackageReleaseNotes>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<Description>The core module for managing blockchain data downloading and event processing in the DownloaderV3 system.</Description>
<PackageTags>blockchain, downloader, covalent, events, data</PackageTags>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\LICENSE.txt">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

<ItemGroup>
<PackageReference Include="DownloaderV3.Source.CovalentDocument" Version="1.0.0" />
<PackageReference Include="DownloaderV3.Source.CovalentLastBlock" Version="1.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" />
<PackageReference Include="Net.Utils.TaskManager" Version="1.0.1" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\DownloaderV3.Destination\DownloaderV3.Destination.csproj" />
<ProjectReference Include="..\DownloaderV3.Source.CovalentDocument\DownloaderV3.Source.CovalentDocument.csproj" />
<ProjectReference Include="..\DownloaderV3.Source.CovalentLastBlock\DownloaderV3.Source.CovalentLastBlock.csproj" />
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

</Project>

0 comments on commit 4df6920

Please sign in to comment.