-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathWaher.Runtime.Collections.Test.csproj
More file actions
33 lines (28 loc) · 1.3 KB
/
Waher.Runtime.Collections.Test.csproj
File metadata and controls
33 lines (28 loc) · 1.3 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
<Project Sdk="MSTest.Sdk/3.6.4">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<!--
Displays error on console in addition to the log file. Note that this feature comes with a performance impact.
For more information, visit https://learn.microsoft.com/dotnet/core/testing/unit-testing-platform-integration-dotnet-test#show-failure-per-test
-->
<TestingPlatformShowTestsFailure>true</TestingPlatformShowTestsFailure>
</PropertyGroup>
<ItemGroup>
<None Remove="Output\Performance.md" />
</ItemGroup>
<ItemGroup>
<Content Include="Output\Performance.md">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Layout\Waher.Layout.Layout2D\Waher.Layout.Layout2D.csproj" />
<ProjectReference Include="..\..\Script\Waher.Script.Graphs\Waher.Script.Graphs.csproj" />
<ProjectReference Include="..\..\Script\Waher.Script\Waher.Script.csproj" />
<ProjectReference Include="..\Waher.Runtime.Collections\Waher.Runtime.Collections.csproj" />
<ProjectReference Include="..\Waher.Runtime.Profiling\Waher.Runtime.Profiling.csproj" />
</ItemGroup>
</Project>