forked from dotnet/interactive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
25 lines (20 loc) · 998 Bytes
/
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
<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>true</EnableSourceLink>
<!-- NuGet: A stable release of a package should not have a prerelease dependency. -->
<NoWarn>$(NoWarn);NU5104</NoWarn>
<FSharpCoreIncludeDocFileInOutput Condition="'$(FSharpCoreIncludeDocFileInOutput)' == ''">true</FSharpCoreIncludeDocFileInOutput>
</PropertyGroup>
<PropertyGroup>
<SystemReactiveVersion>5.0.0</SystemReactiveVersion>
<MicrosoftCodeAnalysisCommonVersion>3.11.0</MicrosoftCodeAnalysisCommonVersion>
</PropertyGroup>
<PropertyGroup>
<XUnitCoreSettingsFile>$(MSBuildThisFileDirectory)xunit.runner.json</XUnitCoreSettingsFile>
</PropertyGroup>
</Project>