-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMathCore.DSP.Tests.csproj
More file actions
74 lines (66 loc) · 2.84 KB
/
Copy pathMathCore.DSP.Tests.csproj
File metadata and controls
74 lines (66 loc) · 2.84 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<IsPackable>false</IsPackable>
<LangVersion>preview</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Signals\**" />
<EmbeddedResource Remove="Signals\**" />
<None Remove="Signals\**" />
</ItemGroup>
<ItemGroup>
<Using Include="Microsoft.VisualStudio.TestTools.UnitTesting.Extensions" />
<Using Include="System" />
<Using Include="System.Linq" />
<Using Include="System.Collections.Generic" />
<Using Include="System.Threading.Tasks" />
<Using Include="Microsoft.VisualStudio.TestTools.UnitTesting" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MathCore.TestsExtensions" Version="1.0.0.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.0" />
<PackageReference Include="MSTest.TestAdapter" Version="4.1.0" />
<PackageReference Include="MSTest.TestFramework" Version="4.1.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\MathCore.DSP\MathCore.DSP.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="Filters\Mathcad\Butterwort.BandPass.Impulse.csv">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Filters\Mathcad\Butterwort.HighPass.Impulse.csv">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Filters\Mathcad\ChebyshevI.BandPass.Impulse.csv">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Filters\Mathcad\ChebyshevI.HighPass.Impulse.csv">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Filters\Mathcad\ChebyshevII.BandPass.Impulse.csv">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Filters\Mathcad\ChebyshevII.Corrected.Even.HighPassImpulse.csv">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Filters\Mathcad\ChebyshevII.Corrected.Odd.HighPassImpulse.csv">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Filters\Mathcad\ChebyshevII.Even.HighPass.Impulse.csv">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Filters\Mathcad\ChebyshevII.Odd.HighPass.Impulse.csv">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Filters\Mathcad\ChebyshevIICorrected.BandPass.Impulse.csv">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Filters\Mathcad\Elliptic.BandPass.Impulse.csv">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>