forked from microsoft/perfview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
50 lines (41 loc) · 1.79 KB
/
Directory.Build.props
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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<EnableDefaultNoneItems>False</EnableDefaultNoneItems>
</PropertyGroup>
<PropertyGroup>
<LangVersion>7.3</LangVersion>
<Features>strict</Features>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<DebugType>pdbonly</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup>
<!-- These are the versions of the things we are CREATING in this repository -->
<PerfViewVersion>2.0.56</PerfViewVersion>
<TraceEventVersion>2.0.56</TraceEventVersion>
</PropertyGroup>
<!-- versions of dependencies that more than one project use -->
<PropertyGroup>
<PerfViewSupportFilesVersion>1.0.7</PerfViewSupportFilesVersion>
<MicrosoftDiagnosticsTracingTraceEventSupportFilesVersion>1.0.17</MicrosoftDiagnosticsTracingTraceEventSupportFilesVersion>
<MicrosoftDiagnosticsRuntimeVersion>1.1.37504</MicrosoftDiagnosticsRuntimeVersion>
<XunitVersion>2.3.0</XunitVersion>
<XunitRunnerVisualstudioVersion>2.3.0</XunitRunnerVisualstudioVersion>
</PropertyGroup>
<PropertyGroup>
<!--
Make sure any documentation comments which are included in code get checked for syntax during the build, but do
not report warnings for missing comments.
CS1573: Parameter 'parameter' has no matching param tag in the XML comment for 'parameter' (but other parameters do)
CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member'
-->
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<NoWarn>$(NoWarn),1573,1591</NoWarn>
</PropertyGroup>
</Project>