FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
NumSharp/test/NumSharp.UnitTest/NumSharp.UnitTest.csproj at master · iamitka/NumSharp · GitHub
iamitka
/
NumSharp
Public
forked from
SciSharp/NumSharp
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
NumSharp
/
test
/
NumSharp.UnitTest
/
NumSharp.UnitTest.csproj
Copy path
More file actions
More file actions
Latest commit
History
History
History
134 lines (109 loc) · 5.22 KB
Breadcrumbs
NumSharp
/
test
/
NumSharp.UnitTest
/
NumSharp.UnitTest.csproj
Copy path
File metadata and controls
134 lines (109 loc) · 5.22 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
<
Project
Sdk
=
"
Microsoft.NET.Sdk
"
>
<
PropertyGroup
>
<!--
<TargetFramework>net472</TargetFramework>
-->
<
TargetFramework
>netcoreapp2.2</
TargetFramework
>
<!--
<TargetFramework>netstandard2.0</TargetFramework>
-->
<
IsPackable
>false</
IsPackable
>
<
AllowUnsafeBlocks
>true</
AllowUnsafeBlocks
>
<
LangVersion
>latest</
LangVersion
>
<
Platforms
>AnyCPU;x64</
Platforms
>
<
AssemblyOriginatorKeyFile
>Open.snk</
AssemblyOriginatorKeyFile
>
<
Configurations
>Debug;Release;Publish;Debug-Minimal</
Configurations
>
</
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</
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;NETCORE;</
DefineConstants
>
</
PropertyGroup
>
<
PropertyGroup
Condition
=
"
'$(Configuration)|$(Platform)'=='Debug-Minimal|AnyCPU'
"
>
<
DefineConstants
>TRACE;DEBUG;NETCORE;</
DefineConstants
>
</
PropertyGroup
>
<
PropertyGroup
Condition
=
"
'$(Configuration)|$(Platform)'=='Debug|x64'
"
>
<
DefineConstants
>DEBUG;TRACE</
DefineConstants
>
</
PropertyGroup
>
<
PropertyGroup
Condition
=
"
'$(Configuration)|$(Platform)'=='Debug-Minimal|x64'
"
>
<
DefineConstants
>DEBUG;TRACE</
DefineConstants
>
</
PropertyGroup
>
<
PropertyGroup
Condition
=
"
'$(Configuration)|$(Platform)'=='Publish|AnyCPU'
"
>
<
DocumentationFile
/>
<
Optimize
>true</
Optimize
>
<
SignAssembly
>true</
SignAssembly
>
<
DefineConstants
>SIGNING</
DefineConstants
>
</
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)', '^netstandard\d'))
"
>
<
PackageReference
Include
=
"
System.Drawing.Common
"
Version
=
"
4.5.1
"
/>
<
PackageReference
Include
=
"
Microsoft.Windows.Compatibility
"
Version
=
"
2.0.1
"
/>
<
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.1.1
"
/>
<
PackageReference
Include
=
"
System.Drawing.Common
"
Version
=
"
4.5.1
"
/>
<
PackageReference
Include
=
"
System.Memory
"
Version
=
"
4.5.3
"
/>
</
ItemGroup
>
<
ItemGroup
>
<
Compile
Remove
=
"
Backends\Unmanaged\Iterators\**
"
/>
<
Compile
Remove
=
"
data\**
"
/>
<
EmbeddedResource
Remove
=
"
Backends\Unmanaged\Iterators\**
"
/>
<
EmbeddedResource
Remove
=
"
data\**
"
/>
<
None
Remove
=
"
Backends\Unmanaged\Iterators\**
"
/>
<
None
Remove
=
"
data\**
"
/>
</
ItemGroup
>
<
ItemGroup
>
<
PackageReference
Include
=
"
Codecov
"
Version
=
"
1.5.0
"
/>
<
PackageReference
Include
=
"
FluentAssertions
"
Version
=
"
5.7.0
"
/>
<
PackageReference
Include
=
"
Microsoft.CSharp
"
Version
=
"
4.5.0
"
/>
<
PackageReference
Include
=
"
OpenCover
"
Version
=
"
4.7.922
"
/>
</
ItemGroup
>
<
Target
Name
=
"
LogDebugInfo
"
>
<
Message
Text
=
"
Building for $(TargetFramework) on $(OS)
"
Importance
=
"
High
"
/>
</
Target
>
<
ItemGroup
>
<
PackageReference
Include
=
"
Microsoft.NET.Test.Sdk
"
Version
=
"
16.2.0
"
/>
<
PackageReference
Include
=
"
MSTest.TestAdapter
"
Version
=
"
2.0.0-beta4
"
/>
<
PackageReference
Include
=
"
MSTest.TestFramework
"
Version
=
"
2.0.0-beta4
"
/>
<
PackageReference
Include
=
"
System.Runtime.CompilerServices.Unsafe
"
Version
=
"
4.6.0-preview7.19362.9
"
/>
</
ItemGroup
>
<
ItemGroup
>
<
ProjectReference
Include
=
"
..\..\src\NumSharp.Bitmap\NumSharp.Bitmap.csproj
"
/>
<
ProjectReference
Include
=
"
..\..\src\NumSharp.Core\NumSharp.Core.csproj
"
/>
</
ItemGroup
>
<
ItemGroup
>
<
None
Include
=
"
data\*
"
>
<
CopyToOutputDirectory
>PreserveNewest</
CopyToOutputDirectory
>
</
None
>
</
ItemGroup
>
<
ItemGroup
>
<
None
Remove
=
"
NumSharp.Bitmap\resources\captcha-a.png
"
/>
<
None
Remove
=
"
NumSharp.Bitmap\resources\captcha-b.png
"
/>
<
None
Remove
=
"
NumSharp.Bitmap\resources\captcha-c.png
"
/>
<
None
Remove
=
"
NumSharp.Bitmap\resources\captcha-d.png
"
/>
</
ItemGroup
>
<
ItemGroup
>
<
EmbeddedResource
Include
=
"
NumSharp.Bitmap\resources\captcha-a.png
"
>
<
CopyToOutputDirectory
>Never</
CopyToOutputDirectory
>
</
EmbeddedResource
>
<
EmbeddedResource
Include
=
"
NumSharp.Bitmap\resources\captcha-b.png
"
>
<
CopyToOutputDirectory
>Never</
CopyToOutputDirectory
>
</
EmbeddedResource
>
<
EmbeddedResource
Include
=
"
NumSharp.Bitmap\resources\captcha-c.png
"
>
<
CopyToOutputDirectory
>Never</
CopyToOutputDirectory
>
</
EmbeddedResource
>
<
EmbeddedResource
Include
=
"
NumSharp.Bitmap\resources\captcha-d.png
"
>
<
CopyToOutputDirectory
>Never</
CopyToOutputDirectory
>
</
EmbeddedResource
>
</
ItemGroup
>
<
ItemGroup
>
<
None
Include
=
"
DataSample.cs
"
/>
</
ItemGroup
>
</
Project
>
Back
|
FazBrowse Home
|
New Git URL