forked from SciSharp/NumSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNumSharp.Bitmap.csproj
More file actions
84 lines (76 loc) · 3.8 KB
/
NumSharp.Bitmap.csproj
File metadata and controls
84 lines (76 loc) · 3.8 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Authors>Eli Belash, Haiping Chen, Meinrad Recheis</Authors>
<PackageOutputPath>../../packages</PackageOutputPath>
<Description>This package provides extensions for System.Drawing.Bitmap for creating NDArray and Bitmap with or without copying.</Description>
<PackageProjectUrl>https://github.com/SciSharp</PackageProjectUrl>
<Copyright>2021 © SciSharp STACK Team</Copyright>
<RepositoryUrl>https://github.com/SciSharp/NumSharp</RepositoryUrl>
<PackageReleaseNotes>Added complicated shape and bbp inference mechanism. Added argument 'discardAlpha' to all methods.</PackageReleaseNotes>
<AssemblyVersion>0.40.0.0</AssemblyVersion>
<FileVersion>0.40.0.0</FileVersion>
<RepositoryType>git</RepositoryType>
<PackageTags>Numpy, NumSharp, MachineLearning, Math, Scientific, Numeric, Mathlab, SciSharp</PackageTags>
<PackageLicenseUrl></PackageLicenseUrl>
<LangVersion>7.3</LangVersion>
<PackageIconUrl>https://avatars3.githubusercontent.com/u/44989469?s=200&v=4</PackageIconUrl>
<PackageId>NumSharp.Bitmap</PackageId>
<Product>NumSharp.Bitmap</Product>
<Company>SciSharp STACK</Company>
<RootNamespace>NumSharp.Bitmap</RootNamespace>
<Version>0.40.0.0</Version>
<Version Condition=" '$(VersionSuffix)' != '' ">$(Version)-$(VersionSuffix)</Version>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AssemblyOriginatorKeyFile>Open.snk</AssemblyOriginatorKeyFile>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<Platforms>AnyCPU;x64</Platforms>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<Configurations>Debug;Release;Publish</Configurations>
<PackageVersion>0.40.0</PackageVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Publish|AnyCPU'">
<DocumentationFile />
<Optimize>true</Optimize>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<ItemGroup>
<Compile Remove="NewFolder\**" />
<EmbeddedResource Remove="NewFolder\**" />
<None Remove="NewFolder\**" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Backends\Default\Math\Default.Op.Boolean.template.cs" />
<Compile Remove="Backends\Default\Math\Default.Op.template.cs" />
<Compile Remove="Backends\Default\Math\Templates\Default.Op.Dot.Boolean.template.cs" />
<Compile Remove="Backends\Default\Math\Templates\Default.Op.Dot.template.cs" />
<Compile Remove="Backends\Default\Math\Templates\Default.Op.Equals.template.cs" />
<Compile Remove="Backends\Default\Math\Templates\Default.Op.General.template.cs" />
<Compile Remove="Backends\Iterators\NDIterator.template.cs" />
<Compile Remove="Operations\Elementwise\Templates\Default.Op.Boolean.template.cs" />
<Compile Remove="Operations\Elementwise\Templates\Default.Op.Equals.template.cs" />
<Compile Remove="Operations\NdArray.ElementsWise.cs" />
</ItemGroup>
<ItemGroup>
<None Remove="NumSharp.Bitmap.csproj.DotSettings" />
<None Remove="NumSharp.Image.csproj.DotSettings" />
<None Remove="Open.snk" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<Target Name="LogDebugInfo">
<Message Text="Building for $(TargetFramework) on $(OS)" Importance="High" />
</Target>
<ItemGroup>
<PackageReference Include="System.Drawing.Common" Version="5.0.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NumSharp.Core\NumSharp.Core.csproj" />
</ItemGroup>
</Project>