|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 | <Import Project="$(RepoRoot)eng/pkg/Pack.props" /> |
3 | 3 | <PropertyGroup> |
4 | | - <TargetFramework>netstandard2.0</TargetFramework> |
| 4 | + <TargetFramework>net6.0</TargetFramework> |
| 5 | + <EnablePreviewFeatures>True</EnablePreviewFeatures> |
5 | 6 | <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
6 | 7 | <SuppressFinalPackageVersion>false</SuppressFinalPackageVersion> |
7 | 8 | <Description>This package contains easy-to-use and high-performance libraries for data analysis and transformation.</Description> |
8 | 9 | <PackageReleaseNotes>Initial preview of robust and extensible types and algorithms for manipulating structured data that supports aggregations, statistical funtions, sorting, grouping, joins, merges, handling missing values and more. </PackageReleaseNotes> |
9 | 10 | <PackageTags>ML.NET ML Machine Learning Data Science DataFrame Preparation DataView Analytics Exploration</PackageTags> |
10 | 11 | <GenerateDocumentationFile>true</GenerateDocumentationFile> |
| 12 | + |
| 13 | + |
11 | 14 | <!-- |
12 | 15 | 1591: Documentation warnings |
13 | 16 | NU5100: Warning that gets triggered because a .dll is not placed under lib folder on package. This is by design as we want MDAI to be under interactive-extensions folder. |
|
47 | 50 | <PackageReference Include="System.Memory" Version="$(SystemMemoryVersion)" /> |
48 | 51 | <PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="$(SystemRuntimeCompilerServicesUnsafeVersion)" /> |
49 | 52 | <PackageReference Include="System.Buffers" Version="$(SystemBuffersVersion)" /> |
| 53 | + <PackageReference Include="System.Runtime.Experimental" Version="6.0.2" /> |
50 | 54 | </ItemGroup> |
51 | 55 |
|
52 | 56 | <ItemGroup> |
|
119 | 123 | <Generator>TextTemplatingFileGenerator</Generator> |
120 | 124 | <LastGenOutput>PrimitiveColumnArithmetic.cs</LastGenOutput> |
121 | 125 | </None> |
122 | | - <None Update="PrimitiveDataFrameColumnComputations.tt"> |
123 | | - <Generator>TextTemplatingFileGenerator</Generator> |
124 | | - <LastGenOutput>PrimitiveDataFrameColumnComputations.cs</LastGenOutput> |
125 | | - </None> |
126 | 126 | <None Update="PrimitiveColumnContainer.BinaryOperations.tt"> |
127 | 127 | <Generator>TextTemplatingFileGenerator</Generator> |
128 | 128 | <LastGenOutput>PrimitiveColumnContainer.BinaryOperations.cs</LastGenOutput> |
|
212 | 212 | <AutoGen>True</AutoGen> |
213 | 213 | <DependentUpon>PrimitiveColumnArithmetic.tt</DependentUpon> |
214 | 214 | </Compile> |
215 | | - <Compile Update="PrimitiveDataFrameColumnComputations.cs"> |
216 | | - <DesignTime>True</DesignTime> |
217 | | - <AutoGen>True</AutoGen> |
218 | | - <DependentUpon>PrimitiveDataFrameColumnComputations.tt</DependentUpon> |
219 | | - </Compile> |
220 | 215 | <Compile Update="PrimitiveColumnContainer.BinaryOperations.cs"> |
221 | 216 | <DesignTime>True</DesignTime> |
222 | 217 | <AutoGen>True</AutoGen> |
|
0 commit comments