-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMathCore.Tests.csproj
More file actions
54 lines (45 loc) · 1.47 KB
/
MathCore.Tests.csproj
File metadata and controls
54 lines (45 loc) · 1.47 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>
net9.0;
<!--net4.8;-->
</TargetFrameworks>
<IsPackable>false</IsPackable>
<LangVersion>preview</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<Using Include="System" />
<Using Include="System.Linq" />
<Using Include="System.Collections.Generic" />
<Using Include="System.Threading.Tasks" />
<Using Include="Microsoft.VisualStudio.TestTools.UnitTesting" />
<Using Include="Microsoft.VisualStudio.TestTools.UnitTesting.Extensions" />
</ItemGroup>
<PropertyGroup>
<NoWarn>
1701;1702;
0219;
8601;8602;8604;8607;8618;8619;8625;
8794
</NoWarn>
</PropertyGroup>
<ItemGroup>
<None Include=".Properties\test.runsettings" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MathCore.TestsExtensions" Version="0.1.44" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="Moq" Version="4.20.72" />
<PackageReference Include="MSTest.TestAdapter" Version="3.6.3" />
<PackageReference Include="MSTest.TestFramework" Version="3.7.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\MathCore\MathCore.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="Interpolation\InterpolatorNDData.zip">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>