Skip to content

Commit bfa5b97

Browse files
committed
- Add nuget properties
1 parent edb660d commit bfa5b97

3 files changed

Lines changed: 13 additions & 24 deletions

File tree

Ninja.FileUtil.Core.sln

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution", "Solution", "{41
99
.gitignore = .gitignore
1010
.travis.yml = .travis.yml
1111
License.md = License.md
12+
ms-icon-310x310.png = ms-icon-310x310.png
1213
README.md = README.md
1314
EndProjectSection
1415
EndProject
15-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ninja.FileUtil", "src\Ninja.FileUtil\Ninja.FileUtil.csproj", "{FD920B11-BA4F-4781-BD56-56CF362982CF}"
16+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ninja.FileUtil", "src\Ninja.FileUtil\Ninja.FileUtil.csproj", "{FD920B11-BA4F-4781-BD56-56CF362982CF}"
1617
EndProject
17-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ninja.FileUtil.Tests", "test\Ninja.FileUtil.Tests\Ninja.FileUtil.Tests.csproj", "{95A1410C-6FB4-446D-A692-9BC018882298}"
18+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ninja.FileUtil.Tests", "test\Ninja.FileUtil.Tests\Ninja.FileUtil.Tests.csproj", "{95A1410C-6FB4-446D-A692-9BC018882298}"
1819
EndProject
1920
Global
2021
GlobalSection(SolutionConfigurationPlatforms) = preSolution

ms-icon-310x310.png

63.5 KB
Loading

src/Ninja.FileUtil/Ninja.FileUtil.csproj

Lines changed: 10 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -4,32 +4,20 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<RepositoryType>Public</RepositoryType>
66
<RepositoryUrl>https://github.com/NinjaRocks/FileUtil.Core</RepositoryUrl>
7-
<PackageTags>csv parser, fixed width file, Delimiter separated file, c# parser, comma separated CSV parser</PackageTags>
7+
<PackageTags>csv fixed width file delimiter parser</PackageTags>
88
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
99
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1010
<Description>.Net Library to read from fixed width or delimiter separated file using strongly typed objects.
11-
12-
What is Fixed width or Delimiter separated text files?
13-
Fixed width or Delimiter separeted text file is a file that has a specific format which allows for the manipulation of textual information in an organized fashion. Each row contains one record of information; each record can contain multiple pieces of data fields or columns. The data columns are separated by any character you specify called the delimiter. All rows in the file follow a consistent format and should be with the same number of data columns. Data columns could be empty with no value.
14-
15-
CASE 1 : Simple pipe '|' separated Delimeter File is shown below (this could even be comma ',' separated CSV)
16-
17-
|Mr|Jack Marias|Male|London|Active|||
18-
|Dr|Bony Stringer|Male|New Jersey|Active||Paid|
19-
|Mrs|Mary Ward|Female||Active|||
20-
|Mr|Robert Webb|||Active|||
21-
22-
CASE 2: The above file could have a header and a footer. In which case, each row has an identifier called as Line head to determine the type of row in the file.
23-
24-
|H|Department|Jun 23 2016 7:01PM|
25-
|D||Jack Marias|Male|London|Active|||
26-
|D|Dr|Bony Stringer|Male|New Jersey|Active||Paid|
27-
|D|Mrs|Mary Ward|Female||Active|||
28-
|D|Mr|Robert Webb|||Active|||
29-
|F|4 Records|
30-
31-
FileUtil can be used to parse both of the shown formats above. The line heads and data column delimiters (separators) are configurable as required per use case.</Description>
11+
Example: pipe delimited, csv, etc.</Description>
3212
<PackageLicenseUrl>https://github.com/NinjaRocks/FileUtil.Core/blob/master/License.md</PackageLicenseUrl>
13+
<NeutralLanguage>en-GB</NeutralLanguage>
14+
<Company>Ninja Corp</Company>
15+
<Authors>Najaf Shayk</Authors>
16+
<PackageId>FixedWidth.FileParser</PackageId>
17+
<Product>Fixed Width File Parser</Product>
18+
<PackageProjectUrl>https://github.com/NinjaRocks/FileUtil.Core</PackageProjectUrl>
19+
<PackageIconUrl>https://github.com/NinjaRocks/FileUtil.Core/blob/master/ms-icon-310x310.png</PackageIconUrl>
20+
<Version>1.0.2</Version>
3321
</PropertyGroup>
3422

3523
</Project>

0 commit comments

Comments
 (0)