-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFileUtil.csproj
More file actions
52 lines (52 loc) · 2.26 KB
/
FileUtil.csproj
File metadata and controls
52 lines (52 loc) · 2.26 KB
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
42
43
44
45
46
47
48
49
50
51
52
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1;net9.0;net10.0</TargetFrameworks>
<RepositoryType>Public</RepositoryType>
<RepositoryUrl>https://github.com/CodeShayk/FileUtil.Core</RepositoryUrl>
<PackageTags>csv tsv fixed-width delimiter-file delimiter file-parser file parser</PackageTags>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Description>.Net Library to read from fixed width or delimiter separated file using strongly typed objects.
Example: pipe delimited, csv, tsv, etc.</Description>
<NeutralLanguage>en-GB</NeutralLanguage>
<Company>Code Shayk</Company>
<Authors>Code Shayk</Authors>
<PackageId>FixedWidth.FileParser</PackageId>
<Product>Fixed Width File Parser</Product>
<PackageProjectUrl>https://github.com/CodeShayk/FileUtil.Core/wiki</PackageProjectUrl>
<PackageIconUrl>https://1drv.ms/u/s!Aq_ncig7TU4551b5fzxOad-pDMfL</PackageIconUrl>
<Version>5.1.0</Version>
<Title>FixedWidth.FileParser</Title>
<Copyright>© Copyright 2026 Code Shayk.</Copyright>
<PackageIcon>file-parser.jpg</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>License.md</PackageLicenseFile>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<IncludeSymbols>True</IncludeSymbols>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<PackageReleaseNotes>v5.1.0 - Targets .net 10 </PackageReleaseNotes>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<Optimize>True</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<Optimize>True</Optimize>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\License.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\images\file-parser.jpg">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Parsley.Net" Version="2.1.0" />
</ItemGroup>
</Project>