|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFramework>netstandard2.0</TargetFramework> |
| 4 | + <TargetFrameworks>net46;netstandard2.0</TargetFrameworks> |
5 | 5 | <Platforms>AnyCPU;x64</Platforms> |
6 | 6 | <Version>0.2.0</Version> |
7 | 7 | <Authors>Deepak Batini</Authors> |
8 | 8 | <Company>Tech-Quantum</Company> |
9 | 9 | <Description>An extended version of the Array to accelerate operation, easy to use, multi dimensional. With SuperchargedArray.Accelerated namespace you will unlock SIMD potential to run the Array operation on any hardware like Intel CPU/GPU, NVIDIA, AMD etc.</Description> |
10 | | - <PackageLicenseFile>LICENSE</PackageLicenseFile> |
11 | 10 | <PackageProjectUrl>https://github.com/tech-quantum/SuperchargedArray</PackageProjectUrl> |
12 | 11 | <RepositoryUrl>https://github.com/tech-quantum/SuperchargedArray</RepositoryUrl> |
13 | 12 | <RepositoryType>git</RepositoryType> |
14 | 13 | <PackageTags>array-manipulations, array, fast array, ndarray, multi dimension array, tensor</PackageTags> |
15 | 14 | <PackageIconUrl>https://raw.githubusercontent.com/tech-quantum/Arithmetica/master/icon128.png</PackageIconUrl> |
16 | 15 | <Title>SuperchargedArray</Title> |
17 | 16 | <PackageLicenseUrl>https://raw.githubusercontent.com/tech-quantum/SuperchargedArray/master/LICENSE</PackageLicenseUrl> |
| 17 | + <Product>Supercharged Array</Product> |
18 | 18 | </PropertyGroup> |
19 | 19 |
|
20 | 20 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
21 | 21 | <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
22 | | - <DefineConstants>TRACE;DEBUG;NETSTANDARD;NETSTANDARD2_0;WIN</DefineConstants> |
| 22 | + <DefineConstants>TRACE;DEBUG;NETSTANDARD;NETSTANDARD2_0;</DefineConstants> |
23 | 23 | </PropertyGroup> |
24 | 24 |
|
25 | 25 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> |
|
29 | 29 |
|
30 | 30 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
31 | 31 | <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
32 | | - <DefineConstants>TRACE;RELEASE;NETSTANDARD;NETSTANDARD2_0;OSX</DefineConstants> |
| 32 | + <DefineConstants>TRACE;RELEASE;NETSTANDARD;NETSTANDARD2_0;</DefineConstants> |
33 | 33 | <DebugType>portable</DebugType> |
| 34 | + <Optimize>false</Optimize> |
34 | 35 | </PropertyGroup> |
35 | 36 |
|
36 | 37 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> |
|
63 | 64 | </EmbeddedResource> |
64 | 65 | </ItemGroup> |
65 | 66 |
|
| 67 | + <ItemGroup> |
| 68 | + <None Update="SuperchargedArray.dll.config"> |
| 69 | + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 70 | + </None> |
| 71 | + </ItemGroup> |
| 72 | + |
66 | 73 | </Project> |
0 commit comments