-
Notifications
You must be signed in to change notification settings - Fork 0
/
SharpStackConvert.csproj
41 lines (33 loc) · 2.42 KB
/
SharpStackConvert.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>SharpStack Convert - Convert anything to anything</Title>
<Authors>SharpStack Technologies</Authors>
<PackageId>SharpStackConvert</PackageId>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<Version>1.0.0.2</Version>
<PackageReadmeFile>Readme.md</PackageReadmeFile>
<Description>The SharpStackConvert NuGet package is a powerful utility library simplifying data conversion tasks for developers. Offering a wide range of extension methods and static class functionalities, it covers Base64 encoding/decoding, CSV handling, HTML content conversion, and hash value generation (MD5, SHA1, SHA256, SHA384, SHA512). Additionally, it provides methods for numeric, date/time conversions, and JSON serialization/deserialization. Streamline your development process with this versatile package for efficient and reliable data conversions in various scenarios.</Description>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<PackageReleaseNotes>This release introduces a host of new classes that significantly enhance the functionality of the package, making data conversion tasks even more streamlined and versatile. The newly added classes include CSVConverter, DataTableConverter, HashConverter, HTMLConverter, and JsonConverter. These classes bring a wealth of methods to handle CSV data, convert between DataTables and various string representations, generate hash values, convert HTML content, and facilitate JSON serialization and deserialization. We believe these additions will empower developers with powerful tools to tackle a broader range of data conversion challenges. Upgrade to the latest version now and explore the enhanced capabilities of SharpStackConvert!</PackageReleaseNotes>
<RepositoryUrl>https://github.com/ishrarg/SharpStackConvert</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<None Remove="LICENSE" />
</ItemGroup>
<ItemGroup>
<None Include="LICENSE" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Drawing.Common" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<None Update="Readme.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>