-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathUnitTest.Build.props
More file actions
23 lines (19 loc) · 756 Bytes
/
Copy pathUnitTest.Build.props
File metadata and controls
23 lines (19 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<!--
SPDX-FileCopyrightText: 2021 Frans van Dorsselaer
SPDX-License-Identifier: MIT
-->
<Project>
<PropertyGroup>
<!-- Be strict when testing, even in Release (at the cost of performance) -->
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
</PropertyGroup>
<ItemGroup>
<!-- We use internal test classes. -->
<AssemblyAttribute Include="Microsoft.VisualStudio.TestTools.UnitTesting.DiscoverInternalsAttribute" />
<AssemblyAttribute Include="System.Diagnostics.CodeAnalysis.SuppressMessageAttribute">
<_Parameter1>Performance</_Parameter1>
<_Parameter2>CA1812:Internal class is never instantiated</_Parameter2>
</AssemblyAttribute>
</ItemGroup>
</Project>