-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMathCore.Algorithms.csproj
More file actions
40 lines (34 loc) · 1.1 KB
/
MathCore.Algorithms.csproj
File metadata and controls
40 lines (34 loc) · 1.1 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>preview</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<PropertyGroup>
<NoWarn>
0059;1006;
1701;1702;
0219;
8601;8602;8604;8607;8618;8625;
8794
</NoWarn>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\MathCore\MathCore.csproj" />
</ItemGroup>
<ItemGroup>
<Using Include="System" />
<Using Include="System.Linq" />
<Using Include="System.Collections.Generic" />
<Using Include="System.Threading.Tasks" />
<Using Include="MathCore.Algorithms" />
<Using Include="MathCore.Algorithms.Infrastructure" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="OxyPlot.Core.Drawing" Version="2.1.0" />
<PackageReference Include="OxyPlot.ImageSharp" Version="2.2.0" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.12" />
<PackageReference Include="System.Drawing.Common" Version="10.0.4" />
</ItemGroup>
</Project>