-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathConsoleTest.csproj
More file actions
42 lines (35 loc) · 1.29 KB
/
ConsoleTest.csproj
File metadata and controls
42 lines (35 loc) · 1.29 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<!--<TargetFramework>net6.0-windows10.0.17763.0</TargetFramework>-->
<TargetFramework>net10.0</TargetFramework>
<RootNamespace>MathCore.DSP</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<!-- Включить обратно BinaryFormatter и Formatter -->
<EnableUnsafeBinaryFormatterSerializationx>true</EnableUnsafeBinaryFormatterSerializationx>
</PropertyGroup>
<PropertyGroup>
<NoWarn>
0108;
0219;0649;
1701;1702;
8601;8602;8604;8607;8618;8619;8622;8625;8632;
8794
</NoWarn>
</PropertyGroup>
<ItemGroup>
<!--<PackageReference Include="MathCore" Version="0.0.66" />-->
<!--<PackageReference Include="Microsoft.Toolkit.Uwp.Notifications" Version="7.1.2" />-->
<PackageReference Include="OxyPlot.ImageSharp" Version="2.2.0" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.12" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\MathCore.DSP\MathCore.DSP.csproj" />
</ItemGroup>
<ItemGroup>
<Using Include="MathCore.DSP" />
<Using Include="MathCore.DSP.Extensions" />
<Using Include="MathCore.DSP.Filters" />
<Using Include="MathCore.DSP.Signals" />
</ItemGroup>
</Project>