-
-
Notifications
You must be signed in to change notification settings - Fork 149
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
26 lines (19 loc) 路 898 Bytes
/
Copy pathDirectory.Build.props
File metadata and controls
26 lines (19 loc) 路 898 Bytes
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
<Project>
<Import Project="..\build\Directory.Build.props" />
<PropertyGroup>
<!-- Test projects never need to be packaged -->
<IsPackable>false</IsPackable>
<!-- Unit tests don't need public XML docs -->
<NoWarn>$(NoWarn);CS1591</NoWarn>
<!-- Ignore platform compatibility warnings -->
<NoWarn>$(NoWarn);CA1416</NoWarn>
<!-- Missing readonly modifier for readonly struct members (not needed in tests) -->
<NoWarn>$(NoWarn);IDE0251</NoWarn>
<!-- See notes in .props file in the sample projects directory -->
<NoWarn>$(NoWarn);WMC1006</NoWarn>
<EnableMSTestRunner>true</EnableMSTestRunner>
<TestingPlatformDotNetTestSupport>true</TestingPlatformDotNetTestSupport>
<TestingPlatformCaptureOutput>false</TestingPlatformCaptureOutput>
<TestingPlatformShowTestsFailure>true</TestingPlatformShowTestsFailure>
</PropertyGroup>
</Project>