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
155 lines (132 loc) · 6.56 KB
/
NumSharp.Bitmap.csproj
File metadata and controls
155 lines (132 loc) · 6.56 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<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>2019 © 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.20.4.0</AssemblyVersion>
<FileVersion>0.20.4.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.20.4</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;Debug-Minimal</Configurations>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Publish|AnyCPU'">
<DocumentationFile />
<Optimize>true</Optimize>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup Condition="$([System.Text.RegularExpressions.Regex]::IsMatch('$(TargetFramework)', '^net\d'))">
<DefineConstants>NETFRAMEWORK</DefineConstants>
<RuntimeIdentifier>win-x86</RuntimeIdentifier>
</PropertyGroup>
<PropertyGroup Condition="$([System.Text.RegularExpressions.Regex]::IsMatch('$(TargetFramework)', '^netstandard\d'))">
<DefineConstants>NETSTANDARD;CPU_PARALLEL;BIT64</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="$([System.Text.RegularExpressions.Regex]::IsMatch('$(TargetFramework)', '^netcoreapp\d'))">
<DefineConstants>NETCORE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>TRACE;DEBUG</DefineConstants>
<NoWarn>1701;1702;IDE1006;0029</NoWarn>
<DocumentationFile></DocumentationFile>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug-Minimal|AnyCPU'">
<DefineConstants>TRACE;DEBUG</DefineConstants>
<NoWarn>1701;1702;IDE1006;0029</NoWarn>
<DocumentationFile />
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<DefineConstants>TRACE;DEBUG;BIT64</DefineConstants>
<NoWarn>1701;1702;IDE1006;0029</NoWarn>
<DocumentationFile />
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug-Minimal|x64'">
<DefineConstants>TRACE;DEBUG;BIT64</DefineConstants>
<NoWarn>1701;1702;IDE1006;0029</NoWarn>
<DocumentationFile />
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile></DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Publish|AnyCPU'">
<DocumentationFile />
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<DocumentationFile />
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Publish|x64'">
<DocumentationFile />
</PropertyGroup>
<ItemGroup Condition="$([System.Text.RegularExpressions.Regex]::IsMatch('$(TargetFramework)', '^net\d'))">
<PackageReference Include="System.Memory" Version="4.5.1" />
</ItemGroup>
<ItemGroup Condition="$([System.Text.RegularExpressions.Regex]::IsMatch('$(TargetFramework)', '^netcoreapp\d'))">
<PackageReference Include="Microsoft.Windows.Compatibility" Version="2.0.1" />
<PackageReference Include="System.Drawing.Common" Version="4.5.1" />
<PackageReference Include="System.Memory" Version="4.5.1" />
</ItemGroup>
<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="4.5.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NumSharp.Core\NumSharp.Core.csproj" />
</ItemGroup>
<ItemGroup>
<Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
</ItemGroup>
</Project>