-
Notifications
You must be signed in to change notification settings - Fork 105
Expand file tree
/
Copy pathNumpy.csproj
More file actions
44 lines (37 loc) · 1.97 KB
/
Copy pathNumpy.csproj
File metadata and controls
44 lines (37 loc) · 1.97 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>Numpy</RootNamespace>
<AssemblyName>Numpy</AssemblyName>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Meinrad Recheis</Authors>
<Product>Numpy.NET</Product>
<PackageId>Numpy</PackageId>
<Description>C# bindings for NumPy - a fundamental library for scientific computing, machine learning and AI. Does not require a local Python installation!</Description>
<Copyright>2019 - Meinrad Recheis</Copyright>
<PackageProjectUrl>https://github.com/SciSharp/Numpy.NET</PackageProjectUrl>
<RepositoryUrl>https://github.com/SciSharp/Numpy.NET</RepositoryUrl>
<PackageTags>Data science, Machine Learning, ML, AI, Scientific Computing, NumPy, Linear Algebra, FFT, SVD, Matrix, Python</PackageTags>
<PackageLicenseUrl>https://github.com/SciSharp/Numpy.NET/blob/master/LICENSE</PackageLicenseUrl>
<Version>3.11.1.35</Version>
<PackageIconUrl>https://github.com/SciSharp/Numpy.NET/blob/master/doc/img/numpy.net.icon128.png?raw=true</PackageIconUrl>
<AssemblyVersion>3.10.0.0</AssemblyVersion>
<FileVersion>3.10.0.0</FileVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>TRACE;PYTHON_INCLUDED</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants>TRACE;PYTHON_INCLUDED</DefineConstants>
</PropertyGroup>
<ItemGroup>
<None Remove="Resources\numpy-1.23.5-cp311-cp311-win_amd64.whl"></None>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\numpy-1.23.5-cp311-cp311-win_amd64.whl"></EmbeddedResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.7.0"></PackageReference>
<PackageReference Include="Python.Included" Version="3.11.1"></PackageReference>
</ItemGroup>
</Project>