-
Notifications
You must be signed in to change notification settings - Fork 0
/
PullStream.Csv.csproj
68 lines (60 loc) · 2.79 KB
/
PullStream.Csv.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputPath>..\..\bin\PullStream.Csv</OutputPath>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Nullable>enable</Nullable>
<LangVersion>11</LangVersion>
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<TargetFramework>netstandard2.0</TargetFramework>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CsvHelper" Version="[13.0.0,28.0.0)" />
<PackageReference Include="PullStream" Version="[1.2.1,2.0.0)" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>
<!-- NuGet package -->
<PropertyGroup>
<PackageId>PullStream.Csv</PackageId>
<Title>PullStream.Csv</Title>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<FileVersion>2.0.0</FileVersion>
<Version>2.0.1</Version>
<PackageReleaseNotes>
https://github.com/pepelev/PullStream/blob/main/src/PullStream.Csv/CHANGELOG.md#201---2021-06-15
</PackageReleaseNotes>
<Authors>Alexey Pepelev</Authors>
<Product>PullStream.Csv</Product>
<Description>PullStream.Csv allows to create lazy System.IO.Stream that contains csv representation of sequence of elements</Description>
<Summary>PullStream.Csv allows to create lazy System.IO.Stream that contains csv representation of sequence of elements</Summary>
<PackageTags>stream io lazy enumerable async csv</PackageTags>
<PackageIcon>logo128x128.png</PackageIcon>
<PackageIconFullPath>$(MSBuildThisFileDirectory)\..\..\logo128x128.png</PackageIconFullPath>
<PackageProjectUrl>https://github.com/pepelev/PullStream</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<MinClientVersion>2.12</MinClientVersion>
<IncludeSymbols>true</IncludeSymbols>
<IncludeSource>true</IncludeSource>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<RepositoryType>git</RepositoryType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>
<!-- Import icon -->
<ItemGroup>
<None Include="$(PackageIconFullPath)" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>