-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDirectory.Build.props
36 lines (28 loc) · 1.2 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
<Project>
<!-- Set the repository root into a variable -->
<PropertyGroup>
<SourceRoot>$(MSBuildThisFileDirectory)</SourceRoot>
</PropertyGroup>
<!-- Common compile parameters -->
<PropertyGroup>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoWarn>$(NoWarn);1591</NoWarn>
</PropertyGroup>
<!-- Shared Package Versions -->
<PropertyGroup>
<!-- System packages -->
<SystemRuntimeVersion>4.3.0</SystemRuntimeVersion>
<SystemCollectionsImmutableVersion>1.4.0</SystemCollectionsImmutableVersion>
<SystemNetHttpVersion>4.3.2</SystemNetHttpVersion>
<SystemReflectionMetadataVersion>1.5.0</SystemReflectionMetadataVersion>
<SystemReflectionTypeExtensionsVersion>4.4.0</SystemReflectionTypeExtensionsVersion>
<SystemValueTupleVersion>4.4.0</SystemValueTupleVersion>
<!-- Microsoft packages -->
<MicrosoftBuildVersion>15.3.409</MicrosoftBuildVersion>
<MicrosoftCodeAnalysisCSharpVersion>2.0.0</MicrosoftCodeAnalysisCSharpVersion>
<!-- Test related packages -->
<BenchmarkDotNetVersion>0.10.9</BenchmarkDotNetVersion>
<!-- Tooling related packages -->
<SourceLinkVersion>2.5.0</SourceLinkVersion>
</PropertyGroup>
</Project>