forked from dotnet/try
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
28 lines (24 loc) · 1.33 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
<Project>
<Import Project="Sdk.props" Sdk="Microsoft.DotNet.Arcade.Sdk" Condition="'$(DisableArcade)' != '1'" />
<Import Project="eng\targets\Settings.props" />
<Import Project="eng\targets\NuGet.targets" />
<PropertyGroup>
<!-- Always use shipping version instead of dummy version -->
<DotNetUseShippingVersions>true</DotNetUseShippingVersions>
<!-- private repo, don't do source-link -->
<DeterministicSourcePaths>false</DeterministicSourcePaths>
<EnableSourceLink>false</EnableSourceLink>
<!-- NuGet: A stable release of a package should not have a prerelease dependency. -->
<NoWarn>$(NoWarn);NU5104</NoWarn>
</PropertyGroup>
<PropertyGroup>
<!-- These properties are needed so that version number can be same for MLS.Agent.Tools and the libraries that depend on it -->
<NewtonsoftJsonVersion>13.0.1 </NewtonsoftJsonVersion>
<PocketLoggerVersion>0.3.0</PocketLoggerVersion>
<SystemDiagnosticsProcessVersion>4.3.0</SystemDiagnosticsProcessVersion>
<SystemReactiveVersion>4.3.2</SystemReactiveVersion>
<SystemRuntimeExtensionsVersion>4.3.0</SystemRuntimeExtensionsVersion>
<MicrosoftCodeAnalysisCommonVersion>4.0.1</MicrosoftCodeAnalysisCommonVersion>
<MicrosoftCodeAnalysisWorkspacesCommonVersion>4.0.1</MicrosoftCodeAnalysisWorkspacesCommonVersion>
</PropertyGroup>
</Project>