forked from dotnet/interactive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
27 lines (23 loc) · 1.26 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
<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>
<!-- 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>12.0.3</NewtonsoftJsonVersion>
<PocketLoggerVersion>0.3.0</PocketLoggerVersion>
<SystemDiagnosticsProcessVersion>4.3.0</SystemDiagnosticsProcessVersion>
<SystemReactiveVersion>4.3.2</SystemReactiveVersion>
<SystemRuntimeExtensionsVersion>4.3.0</SystemRuntimeExtensionsVersion>
<MicrosoftCodeAnalysisCommonVersion>3.5.0</MicrosoftCodeAnalysisCommonVersion>
<MicrosoftCodeAnalysisWorkspacesCommonVersion>3.5.0</MicrosoftCodeAnalysisWorkspacesCommonVersion>
<TaskExtensionsVersion>0.1.8580001</TaskExtensionsVersion>
</PropertyGroup>
</Project>