-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDimension.DataFrame.Extensions.csproj
More file actions
40 lines (35 loc) · 2.2 KB
/
Dimension.DataFrame.Extensions.csproj
File metadata and controls
40 lines (35 loc) · 2.2 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<AssemblyName>Dimension.DataFrame.Extensions</AssemblyName>
<RootNamespace>Dimension.DataFrame.Extensions</RootNamespace>
<LangVersion>latest</LangVersion>
<Platforms>x64</Platforms>
<OutputType>Library</OutputType>
<Nullable>enable</Nullable>
<!-- NuGet Package Information -->
<PackageId>Dimension.DataFrame.Extensions</PackageId>
<Version>1.1.0</Version>
<Authors>Dimension Technologies</Authors>
<Company>Dimension Technologies</Company>
<Product>Dimension DataFrame Extensions</Product>
<Description>A comprehensive set of extension methods for Microsoft.Data.Analysis.DataFrame that provides pandas-like functionality for .NET data science. Includes arithmetic operations, filtering, rolling windows, cumulative calculations, shift operations, statistical methods, and mathematical functions.</Description>
<PackageTags>dataframe;data-analysis;data-science;pandas;extensions;csharp;dotnet;statistics;numerical-computing;math</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/dimension-zero/Dimension.Data.Extensions.DataFrame</PackageProjectUrl>
<RepositoryUrl>https://github.com/dimension-zero/Dimension.Data.Extensions.DataFrame</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>Version 1.1.0: Added statistical methods (Mean, Median, StdDev, Variance, Quantile, Describe), mathematical functions (Abs, Log, Exp, Sqrt, Sin, Cos, Round), and multi-targeting support for .NET 6.0, 7.0, and 8.0.</PackageReleaseNotes>
<Copyright>Copyright © 2024 Dimension Technologies</Copyright>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MathNet.Numerics" Version="5.0.0" />
<PackageReference Include="Microsoft.Data.Analysis" Version="0.21.1" />
</ItemGroup>
</Project>