-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
39 lines (35 loc) · 1.91 KB
/
Directory.Build.props
File metadata and controls
39 lines (35 loc) · 1.91 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
<Project>
<PropertyGroup>
<!-- Build Settings -->
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>12.0</LangVersion>
<!-- Package Metadata -->
<Version>1.2.1</Version>
<Authors>Bilel Msekni</Authors>
<Company>improveTheWorld</Company>
<Copyright>© 2026 improveTheWorld. All rights reserved.</Copyright>
<Description>DataFlow.NET — High-performance data streaming and processing for .NET</Description>
<PackageProjectUrl>https://github.com/improveTheWorld/DataFlow.NET</PackageProjectUrl>
<RepositoryUrl>https://github.com/improveTheWorld/DataFlow.NET</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>dataflow;streaming;linq;async;csv;json;yaml;data-processing</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageReleaseNotes>v1.2.1: Smart Decimal Auto-Detection, Write API Harmonization, ReadOptions.OnError property, YAML record support, NET-001/002/003/005/006/007 bug fixes, 27 new cancellation/timeout tests, 5 GitHub issues closed. Full notes: https://github.com/improveTheWorld/DataFlow.NET/blob/main/docs/changelog/DataFlow.Net_1.2.1.md</PackageReleaseNotes>
<!-- Symbols & Source Link -->
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<DebugType>embedded</DebugType>
</PropertyGroup>
<!-- Source Link for GitHub -->
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
</ItemGroup>
<!-- Include README in package -->
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="\" Condition="Exists('$(MSBuildThisFileDirectory)README.md')"/>
</ItemGroup>
</Project>